Jump to content
UBot Underground

Need Helping To Open Multiple Browser In Script


Recommended Posts

 i try to open two account but when i make new browser it disappear 

and this my command for it :-

 

ui text box("uesr1",#uesr1)

ui text box("password1",#passwor1)

ui text box("status1",#status1)

ui text box("uesr2",#uesr2)

ui text box("password2",#password2)

ui text box("status1",#status1)

set user agent("Internet Explorer 6")


type text(<email field>,#uesr1,"Standard")

type text(<password field>,#passwor1,"Standard")

in new browser {

    set user agent("Internet Explorer 6")


    wait(5)

    type text(<email field>,#uesr2,"Standard")

    wait(5)

    type text(<password field>,#password2,"Standard")

}

 

Link to post
Share on other sites

try

ui text box("uesr1",#uesr1)
ui text box("password1",#passwor1)
ui text box("status1",#status1)
ui text box("uesr2",#uesr2)
ui text box("password2",#password2)
ui text box("status1",#status1)
set user agent("Internet Explorer 6")
navigate("https://mobile.twitter.com","Wait")
type text(<email field>,#uesr1,"Standard")
type text(<password field>,#passwor1,"Standard")
ui button("Close Windows 2") {
    set(#isClose,$false,"Global")
}
set(#isClose,$true,"Global")
in new browser {
    set user agent("Internet Explorer 6")
    navigate("https://mobile.twitter.com","Wait")
    wait(5)
    type text(<email field>,#uesr2,"Standard")
    wait(5)
    type text(<password field>,#password2,"Standard")
    comment("auto close after end command")
    loop while(#isClose) {
        wait(1)
    }
}

Link to post
Share on other sites

i don't use ubots browser.

but i think that the reason your child browser is closing is because there are no other commands to run.

i tried your code and put a 2 minute delay in the new browser command and it stayed open for 2 min.

if you need to keep browser windows open for a prolonged period i would suggest exbrowser

Link to post
Share on other sites

Hi UBotter,

 

Thank you for helping me understand the problem,

and appreciate your spending time trying to solve the problem,

your commands that you send its work and  useful 

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