ChrisPro
11 years agoContributor
Somes objects are not present with TestExecute
Hello,
I use :
- TestComplete (version 10.60.3387.7) in "Microsoft Windows 7 Business, 64-bit Service Pack 1 (6.1 Build 7601)" in order to develop test
- TestExecute (version 10.60.3387.11) in "Microsoft Windows Server 2008 R2 Standard, 64-bit Service Pack 1 (6.1 Build 7601)" in order to execute test
I execute a test project that it lists all objects (for a process) with following code :
l_PropName = new Array("Visible", "Enabled");
l_PropVal = new Array(true, true);
buttons = lProcess.FindAllChildren(l_PropName, l_PropVal, 10);
buttons = (new VBArray(buttons)).toArray();
if (buttons.length > 0)
{
for (i = 0; i < buttons.length; i++)
{
Log.Message("ObjectIdentifier : " + buttons[i].FullName);
}
}Some DELPHI objects are missing in environment with TestExecute, but is is present in environement with TestComplete. The problem is aleatory.
An idea of solution? The problem is identified?