Jump to content
UBot Underground

Quick question about set visibility/captcha solving


Recommended Posts

I just trimmed down my bot and I'm wanting to run more threads. I'd like to know if I set the bot to run invisible will the captchas still be solved? I'm solving captchas via my deathbycaptcha account. Thanks vets!

Link to post
Share on other sites

By default "set visibility" is set to "true", which means browser displays content, if you set it to false and run that node it will hide browser content.

 

You could test that with a simple example like one bellow:

set visibility("Invisible")
navigate("http://ubotstudio.com/playground/captcha-form", "Wait")
wait for element(<name="ctl00$ContentPlaceHolder1$Button1">, "", "Appear")
change attribute(<name="ctl00$ContentPlaceHolder1$captcha">, "style", "display:none;")
change attribute(<name="ctl00$ContentPlaceHolder1$captcha">, "value", $solve captcha(<src=w"/assets/captcha.jpg?id=*">))
click(<name="ctl00$ContentPlaceHolder1$Button1">, "Left Click", "No")
wait for browser event("Everything Loaded", "")
set visibility("Visible")

The code will first hide the browser content, and it will show it after captcha has been submitted.

Link to post
Share on other sites

You can simply enter your DBC details and you will have answer on your hand.

 

Also I don't see any reason why it wouldn't work...you can still interact with browser (even if visibility = false) and that's all that matters.

  • Like 1
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...