Jump to content

Recommended Posts

Posted

I have a web page that I need to wait until it loads. It never says it is done but the page has a class of Internet Explorer_TridentCmboBx1 in it after it loads. Is there a way to wait by class

Posted (edited)

You might try a while loop:

$x=1
While NOT IsArray ( $x)
$x=ControlGetPos ( "Mywebpage", "", "Internet Explorer_TridentCmboBx1" )
sleep(10)
Wend; would exit when an x,y location was found for that combo box.

Not sure if it will work, but might give you a direction to try.

Edited by scriptkitty

AutoIt3, the MACGYVER Pocket Knife for computers.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...