Jump to content
UBot Underground

Recommended Posts

So, I spent some time on another site working with nocaptcha/recaptcha and was able to craft decent enough code to sole the captcha and all that however when visiting tumblr.com I'm experiencing problems.

 

If I use chrome 39:

I can visit tumblr.com >> I can click get started >> I can sign up and enter details & age.

However chrome 39, not sure if just for me seems to have a limitation, when I try to click element offset in the 9/16 box using click location, ubot only clicks 1 element for the entire loop and the others aren't clicked. If I turn click location off then nothing happens.

 

If I use chrome 21: 

I can load tumblr but I cannot register. It doesn't allow me to register. The buttons appear for a second then they vanish and then I'm just seeing random tumblr images. However testing chrome 21 with other websites and it works near flawlessly with the nocaptcha, it does as it's programmed to do.

 

Does anyone have a solution or any ideas as to what may be causing my issues? I'm running on windows 10.

 

Video below:

http://screencast-o-matic.com/watch/cDebfm1r4r

 

 

Link to post
Share on other sites

In the video I was using test code, the code is posted below

set(#count,0,"Global")
loop(3) {
    click($element offset(<tagname="td">,#count),"Left Click","Yes")
    wait(1)
    increment(#count)
}
Link to post
Share on other sites

Error Ubot Studio from naming Variable.
Avoid "#count", "# c" (have more).
Please tell this to Ubot support.

 

i change #count to #Number

try

set(#Number,0,"Global")
loop(3) {
    wait(1)
    click($element offset(<class="rc-imageselect-checkbox">,#Number),"Left Click","No")
    increment(#Number)
}
  • Like 1
Link to post
Share on other sites

It gave me a similar result to the above video but I still got another and did 9 repetitions instead of 3 so more of the pattern could be shown.

 

http://screencast-o-matic.com/watch/cDeb1H1raW

 

Using: Chrome 39

set(#Number,0,"Global")
loop(9) {
    click($element offset(<tagname="td">,#Number),"Left Click","Yes")
    wait(1)
    increment(#Number)
}
Link to post
Share on other sites

I do not understand
Why do not you use my Code.
It should be no problem for a long time.

set(#Number,0,"Global")
loop(3) {
    wait(1)
    click($element offset(<class="rc-imageselect-checkbox">,#Number),"Left Click","No")
    increment(#Number)
}
  • Like 1
Link to post
Share on other sites

Ohh, I'm sorry! I didn't notice there was a change. Seems I was using the wrong element!

<class="rc-imageselect-checkbox">

That fixed it!

 

Thank you, pash! :)

Link to post
Share on other sites
  • 2 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...