Jump to content
UBot Underground

Visibility (or not!) in Pop Up and Shared Browser


Recommended Posts

I am damned if I can get a PopUp and a shared browser window to go invisible :(

 

I am convinced the syntax is good:

 

 

in shared browser {
    set visibility("Invisible")
    navigate("http://www.mysite.com/signin.php", "Wait")
    wait for element(<username field>, "", "Appear")
    .....
    wait for element(<innertext="Done">, "", "Appear")
    set visibility("Visible")
}
 

 

For the pop up I am not so sure what to do to hide it...

 

By "hide it" I mean that the little white box doesn't appear on the right...

 

Anybody ou there can point me to the error of my ways?

 

Thx

Link to post
Share on other sites

remove the set visibility turned back on.   that makes it visable again before it is removed.

in shared browser {
    set visibility("Invisible")
    navigate("http://www.mysite.com/signin.php", "Wait")
    wait for element(<username field>, "", "Appear")
    .....
    wait for element(<innertext="Done">, "", "Appear")

}
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...