zasxes Posted March 11, 2004 Posted March 11, 2004 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
scriptkitty Posted March 11, 2004 Posted March 11, 2004 (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 March 11, 2004 by scriptkitty AutoIt3, the MACGYVER Pocket Knife for computers.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now