Jump to content
UBot Underground

How To Swith Between Main Code And In Shared Browser


Recommended Posts

Hello,

 

Im trying to register on a site with temporarly generated email.

After registering to the site i have to click the confirmation into the email.

 

How to use 2 browsers with their own url and switch between them?

Is there any ubot syntax or function to relaize that?

 

Thanks in advance for help.

Edited by kill3rbko
Link to post
Share on other sites

It's the "same" (same cookies) browser instance so just go back using the shared browser again and the email should still be there.

in shared browser {
    navigate("https://temp-mail.org/en/","Wait")
    set(#email,$scrape attribute(<email field>,"value"),"Global")
    alert("your email is {#email}")
}
comment("do stuff")
wait(2)
in shared browser {
    navigate("https://temp-mail.org/en/","Wait")
    set(#email,$scrape attribute(<email field>,"value"),"Global")
    alert("your email is {#email}")
}
  • Like 2
Link to post
Share on other sites

Great Insomnia,

Thank you for the tip, its working.

I have just a problem to click the "verify" button in the temp email. i can capture the button properties, but when i click even manually i dont have any response.

I am using mohmal for temp email :

 

19GXSsr.png

 

Is it due to the target ?

 

code of the button in the page :

<a target="_blank" href="https://user.robinhood.com/verify_email/?uuid=f9656520-12a1-4ce0-8602-d46a7a36c8f1" style="margin: auto;background: #21ce99;border-radius: 6px;color: #ffffff;display: block;font-family: Open Sans, Helvetica;font-size: 14px;font-weight: regular;padding: 15px;text-decoration: none;width: 240px;">VERIFY EMAIL</a>

Edit : Forget please.

 

I am a Dumb ******

 

When i edit my message i saw the href!

Edited by kill3rbko
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...