Jump to content
UBot Underground

Popups In New Browser Help


Recommended Posts

Hello friends please help with this why don't any idea works well or I'm grabbing wrong

define Yotube like {
    allow popups("In New Window")
    navigate("http://addmefast.com/free_points/youtube_likes", "Wait")
    wait for browser event("Everything Loaded", "")
    wait for element(<innertext=" Like">, "", "Appear")
    click(<innertext=" Like">, "Left Click", "No")
    in new browser {
        wait(5)
        click(<title="I like this">, "Left Click", "No")
        wait(7)
    }
}

at the start it are 2 windows and are not closep

 

Link to post
Share on other sites

maybe try in "Shared Browser" 

 

a "new browser" will open a new windows with it own cookies and cache, 

    in new browser {
        wait(5)
        click(<title="I like this">, "Left Click", "No")
        wait(7)
    }

When you click like button, .. 

click(<innertext=" Like">, "Left Click", "No")

doesnt this it open a new window or iframe anyway ?

if it does then just remove the "new browser" command i think

Link to post
Share on other sites

What about changing the "target" attribute of the link your clicking and adding "_blank" to the "href" element ?

 

This will open the link in a new little window on the right,

 

"_self" - open in same window

"_blank" - open in new window

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