Forum Discussion
gid_216
12 years agoFrequent Contributor
if you want to wait till the page activated,try below one.
"
set obj = Aliases.<Mapping 1>.WaitAliasChild("Name", duration)
Do until obj.exists
set obj = Aliases.<Mapping 1>.WaitAliasChild("Name", duration)
Loop
Do until obj.visible
Loop
"
it will wait indefinitely till the object exists and visible.
"
set obj = Aliases.<Mapping 1>.WaitAliasChild("Name", duration)
Do until obj.exists
set obj = Aliases.<Mapping 1>.WaitAliasChild("Name", duration)
Loop
Do until obj.visible
Loop
"
it will wait indefinitely till the object exists and visible.