Jump to content
UBot Underground

WAIT FOR ELEMENT when page never loads ?


Recommended Posts

I want to make sure that if the page doesn't load after x seconds/minutes, then to forget about WAIT FOR ELEMENT and move on.

 

How would you do it ?

 

Also, if i get: "You already verified this url" then move on ?

 

Thanks

Link to post
Share on other sites

Also, if i get: "You already verified this url" then move on ?

 

Thanks

if you don't want to carryout an action if this text is present you could do a if statement with a not

 

see below this will carry out a action if  "You already verified this url" isn't present if it is present it will skip

 

 if($not($exists(<innertext="You already verified this url">))) {
    then {
        comment("what ever you want to do here if the text isn't present")
    }
}

Link to post
Share on other sites

Thanks guys !

 

1) Didn't know about the ADVANCED section ! Damn neat ! @bestmacros

 

2) Thanks for the code kev123. This is exactly what i need !!!

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...