Questions tagged [2captcha]

For questions specific to the Captcha recognition service named "2Captcha". When using this tag also include the more generic [captcha] tag. Please also provide a tag for the language that you are coding in.

107 questions
0
votes
0 answers

Puppeteer: How to bypass FUNCAPTCHA without submit button

I'm going to get right to the point. I'm trying to bypass Twitch's login funcaptcha using 2captcha's API. Everything works well: My bot communicates with 2captcha fast enough where the captcha won't timeout and my bot receives the token needed to…
Victor J
  • 31
  • 1
  • 6
0
votes
2 answers

How to find a varible html element executing javascript in python

I'm trying to use 2Captcha service to solve an h captcha V2. Works like this: you get a value to solve the captcha Then you find a textarea element in the HTML code to insert that value (here's my problem) you insert the value in that element You…
V-cash
  • 330
  • 3
  • 14
0
votes
0 answers

2captcha flags ERROR_WRONG_GOOGLEKEY but I have supplied one. Is this actually an ERROR_GOOGLEKEY?

This is the output from having put debug_dump on the request. I've anonymized it slightly. Notice that there is a googlekey. The value may be wrong. I'm okay with that. What's bothering me is that ERROR_WRONG_GOOGLEKEY is the wrong error. I should…
bugmagnet
  • 7,631
  • 8
  • 69
  • 131
0
votes
1 answer

Hcaptcha + 2captcha/anticaptcha in C# Selenium Chromedriver

I am trying to submit/callback after entering h-captcha-response and g-recaptcha-response with the solved token but I don't understand how I am supposed to submit it. How can I submit the hCaptcha without form,button or data-callback. Here is the…
0
votes
1 answer

How to use reCaptcha2 solving Services in Selenium python : Python Auto Captcha solver

I am trying to automate a website and it's displaying captcha at some point I just want to know how I can add Auto Recaptcha solving services in my code so the execution of the code does not stop. I have tried Anti-captcha but it's not working and…
Khan Saad
  • 823
  • 1
  • 9
  • 26
0
votes
1 answer

C# 2captcha image post with Base64

C# 2captcha image post HttpClient client = new HttpClient(); var bytes = File.ReadAllBytes("sample.jpg"); var base64 = Convert.ToBase64String(bytes); var secretKey = "8ffa..."; var url =…
0
votes
2 answers

Java/Kotlin Selenium Chromedriver 2Captcha

I'm trying to learn about 2Captcha nad as an example i wanted to make a spotify account. I've gotten to fill the form just right, but the only concern is the 2Captcha. I've tried all sorts of ways found on here but none of them worked. I've…
qverkk
  • 13
  • 7
0
votes
1 answer

Java Selenium 2Captcha

i am trying to automate some process on ( here ) using Selenium with java . WHenever i press on signin button , it displays a captcha to select images like [this] . i was reading about 2captcha to resolve this issue , they are asking for sitekey ,…
Joy
  • 145
  • 2
  • 9
0
votes
0 answers

iMacros/Javascript - How to expose text area of recaptcha V2 when in iframe?

I have a situation where I need to use 2Captcha to solve recaptcha for the site , but the recaptcha is unusually in its own frame. My normal .js I use in imacros for firefox fails to expose the "text area" to paste the token result into. How can…
0
votes
0 answers

Selenium c# w/ 2Captcha Recaptcha v2

So the website requires a captcha fill out in-order to login. I'm using C# winforms and Selenium Webdrivers along with 2Captcha's API Here's the code I got to send the request to 2Captcha's public string SendCaptcha(string APIKey,string…
Coderz
  • 215
  • 2
  • 7
  • 20
0
votes
3 answers

Why can't these functions see my variable?

Why do I get this error: Undefined variable key_2captcha I run this code to pass a CAPTCHA to 2captcha server:
-1
votes
3 answers

what is captcha and what is its uses? find either we can automate it or not exactly... give me best solutions how to bypass it?

I am trying to create a simple test script for verifying the validation message of the signup page but because of the captcha, my script is running into errors. How to bypass it? I am using Cypress version 10, the latest one. I m trying to bypass…
-1
votes
1 answer

Python, Selenium and 2Captcha to solve Captcha not working

I'm trying to using 2Captcha to solve a recaptcha v2. When I run my code, it successfully gets the recaptcha result and stores it in result['code'], however when I execute the below code to submit, it seems the page only refreshes and the recaptcha…
squidrat
  • 1
  • 2
-1
votes
1 answer

How to solve python selenium 2captcha problem?

Here is my code. while True: username_box = self.driver.find_element_by_xpath( '//*[@id="snapname"]') username_box.send_keys('xxxx') sleep(2) age_select = Select(self.driver.find_element_by_id('age')) …
themmfa
  • 499
  • 4
  • 15
-2
votes
1 answer

Why doesn't this code successfully bypass a captcha?

This my code. I using twocaptcha, rerequests, bs4, fake_user_agent. The code should be registered on the site using the requests.post method, but something is going wrong. Also, the code does not output errors and the result is 200. But in fact, the…