Jump to content
UBot Underground

mosayeb256

Members
  • Content Count

    8
  • Joined

  • Last visited

Posts posted by mosayeb256

  1. hi


    i have problem with recaptcha v3 google  :(


    how to fix this problem


    in two image


    post-32369-0-84557000-1559655075_thumb.p   <<< with normal browser


    post-32369-0-65887900-1559655085_thumb.p     <<< with ubot


     


     


    https://pasteboard.co/IhQJYAN.png<<< with normal browser


    https://pasteboard.co/IhQKgpO.png<<< with ubot


     


    i use ubot.but i have 0.1scrore  recaptcha google v3. how can i fixed this  ?


     


    link for test recaptcha v3>>> https://recaptcha-demo.appspot.com/recaptcha-v3-request-scores.php


  2. Can you post the code you have and say if you want to close the windows or not.

    set(#i,1,"Global")
    loop(700) {
        in new browser {
            allow images("No")
            create table from file("C:\\lb.csv",&test)
            navigate($table cell(&test,#i,2),"Wait")
              set(#mojodb,$replace regular expression($scrape attribute($element offset(<class="state text-success">,0),"innertext"),"\\s",$nothing),"Global")
            set(#model,$table cell(&test,#i,0),"Global")
            .
    .
    .
    .
    .
    
        }
        in new browser {
            navigate("!!!!!","Wait")
            wait for element($element offset(<login button>,0),"","Appear")
            type text($element offset(<email field>,0),"!!!!","Standard")
            type text(<name="passwd">,"!!!","Standard")
            change checkbox(<name="stay_logged_in">,"Checked")
        .
        .
        .
        .
        .
        .
        .
        }
        set(#price,0,"Global")
        increment(#i)
    }
    

    hi mr tnq for answer

    I want this new browser to stay open and not close until the rotation of the loop, the code is red, is it possible the whole new browsers  stay open and do not close the last line?

     

     

  3. hi friend i want dont close :)

    i have loop and in the loop i have 3 (in new browser) and i want close browser's in End of the loop

    There are a few things you can do it depends on what you need exactly but here are your options:

     

    If you need to leave it open for a brief time you can just put a wait using the wait command.

     

    If you need to leave it open forever and don't care about your script running further you can use a loop while true and put a wait (one second) in there and it will loop forever.

     

    If you need your script to continue execution then you can do the above but put it inside of a thread. Just keep in mind if you need more browsers doing this it will quickly build up RAM.

    hi friend i want dont close :)

    i have loop and in the loop i have 3 (in new browser) and i want close browser's in End of the loop

×
×
  • Create New...