Hi Guys,
I want to clarify the issue with the KDT call in TestComplete 10.6:
Parameterized KDT tests can be called, and they work fine. The only problem is that the mentioned warning is posted to the Test Log. Existing tests will keep working, but they will post that extra warning for every call.
To avoid getting this warning, you can block posting it in the OnLogWarning even handler like this:
[JScript]
function GeneralEvents_OnLogWarning(Sender, LogParams)
{
warningMarker = "expects a different set of parameters. Please update the operation parameters."
if (LogParams.MessageText.indexOf(warningMarker) > 0)
LogParams.Locked = true;
}
This is a temporary workaround. Our Dev Team is investigating the issue and they will update us soon.
Sorry for this.