Forum Discussion
maximojo
13 years agoFrequent Contributor
Normally 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);
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);