Forum Discussion
- nicktulettContributorThere are other, better Wait commands to check for an object's existence.
I can't see how WaitProperty("Exists", true, 60) could make sense or ever work. - pravin_k99ContributorHello Smartbear Team,
Are you looking at fixing this defect any soon?
Pravin - maximojoFrequent ContributorCan you post your script? I'm curious as to what it looks like.
Why are you waiting for the "Exists" property? - maximojoFrequent ContributorNormally you would just have:
Aliases.IEXPLORE.myAlias.Exists
and wait the default timeout out.
you can even change the default timeout at runtime if you want it to be faster/slower for a particular comparison:
Options.Run.Timeout = 500
and then reset it back to the default afterward.
or else
Aliases.IEXPLORE.WaitAliasChild("myAlias", 1000); - hlalumiereRegular ContributorThe oddball example should probably not be swept aside, as this was a known issue in a few earlier releases. It's not improbable that the previous fix might have been inadvertantly reverted, or did not fix the entire problem originally.
Hi Pravin,
I've checked the WaitProperty method in TestComplete 9.30. It works as expected - pauses the test execution only if the current value of the property isn't equal to the needed one. Can you post here the sample you are using?