Jump to content
UBot Underground

Popup dont work....


Recommended Posts

Hello user of ubot studio

Today i was making a bot, for this site: http://socialmediaexplode.com/

The site need for gain point's, you need to like facebook post etc, and then you can reedem these.

Well, i was making a bot, and when you need to gain point's, it will open a popup, and you will need to do the things for gain point's.

The problem is, in ubot studio, i have put the comand, allow popup's, but nothing to do..

When the popup is open, is a white windows only this..

 

How i can make it work??

Link to post
Share on other sites

The problem is that UBot displays popups inside iframes, and some sites like Facebook don't allow to display them inside iframes (that is why you see a blank popup).

 

The only way to get around that is to scrape iframe's SRC parameter and navigate to that URL inside main or new UBot browser.

Link to post
Share on other sites

The problem is that UBot displays popups inside iframes, and some sites like Facebook don't allow to display them inside iframes.

 

The only way to get around that is to scrape iframe's SRC parameter and navigate to that URL inside main or new UBot browser.

 

How i can do that?

Link to post
Share on other sites

You need to scrape like (maybe you'll have to use different element instead of tagname=iframe):

set(#SRC, $scrape attribute(<tagname="iframe">, "src"), "Global")

and then you navigate to scraped URL.

  • Like 1
Link to post
Share on other sites

You need to scrape like:

set(#SRC, $scrape attribute(<tagname="iframe">, "src"), "Global")

and then you navigate to scraped URL.

 

Ok, i will try, i will post if it work

 

Thanks

Link to post
Share on other sites

You need to scrape like:

set(#SRC, $scrape attribute(<tagname="iframe">, "src"), "Global")

and then you navigate to scraped URL.

 

Hi

 

I have try, but it does seem to do anything, maybe i make a video??

  • Like 1
Link to post
Share on other sites

You need to have popup opened when you scrape with that command, also you can try to use different identifier when you scrape (it might be that page has more than 1 iframe, so <tagname="iframe"> could be picking one without SRC).

 

I've tried to register for that site but I never received confirmation email.

 

You can actually use the code bellow, once the popup is opened (so it's done in one node):

navigate($scrape attribute(<tagname="iframe">, "src"), "Wait")

This should open the iframe SRC in the browser instead of popup.

  • Like 1
Link to post
Share on other sites

You can navigate in a "new browser", so that once you are done with that, bot simply closes it and gets you back to your main browser.

Link to post
Share on other sites
  • 4 weeks later...

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