Jump to content
UBot Underground

Anyone have a clever way of doing this....


Recommended Posts

When Ubot gets to a certain browser page, like on a form sign up, it opens another browser to get information then return to the first browser to input the information and move on from there.

 

 

Link to post
Share on other sites

ok I lied it works.

 

Example:

 

set(#disco, "where can i find a good disco in florida", "Global")
in new browser {
    navigate("http://www.google.com", "Wait")
    wait for browser event("Page Loaded", "")
    click(<name="q">, "Left Click", "No")
    type text(<name="q">, #disco, "Standard")
    wait(5)
}

Link to post
Share on other sites
When Ubot gets to a certain browser page, like on a form sign up, it opens another browser to get information then return to the first browser to input the information and move on from there.

are you talking about the internal popup?

 

you can stop sites from loading in a popup and keep it forced in the main window at all times

( ie simulates the new browser tab open situation)

only you may have to navigate back to your first page to continue ( possibly  depends on the site i would guess )

 

use this feature

 

 

allow popups("No")
or
allow popups("In New Window")

this will keep it focused in the main window for you to continue to work with

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