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
2
votes
1 answer

Error: File could not be downloaded from url: 2Cpatcha Api

I am trying to solve normal captcha using 2Captcha python API, but it gives error that file could not be downloaded. I dont know why is this happening, as I can download it manually from browser and do save as .png to download it. The below is the…
farhan jatt
  • 509
  • 1
  • 8
  • 31
2
votes
0 answers

Finding arkose fun captcha callback

I have been building my confidence with python by automating tasks with selenium. I am trying to automate logging into my battle.net account, yet when I click login it prompts for a fun captcha completion (it prompts the captcha after clicking log…
Larry
  • 117
  • 2
  • 13
2
votes
1 answer

Bypassing a hCaptcha with callback?

Hello so i am trying to bypass hCaptcha in a website called "stake.games" with using 2captcha bypass but it seems to not work. I am getting the bypass code but when i type it in both "grecaptcha-response" & "hcaptcha-response" and click the check…
ccz
  • 41
  • 3
2
votes
1 answer

Javascript callback to resolve hCaptcha

im a complete noob with JS coding and need to assistance to resolve hCaptcha. Currently the site in question is coinhunt.cc, there are two Captcha, reCaptcha that i can resolve, however with hCaptcha i have no clue to get this resolved. The current…
Root X
  • 21
  • 1
  • 3
2
votes
1 answer

Selenium to submit recaptcha using 2captcha Python

I am trying to submit Recaptcha on a search form using Python3, Selenium, and 2captcha. Everything is working fine except submitting the Recaptcha after sending google-tokin in the text-area of Recaptcha. Please guide me what am I missing? When I…
2
votes
0 answers

solving H-captcha without a form submit / button?

I'm using the anti captcha api to solve the h-captcha of a website but I can't give it, to send the result of the captcha solution here I show you my code the website. def Solved_Hcaptcha(url, api, site_key): solver =…
2
votes
2 answers

Solving Picture Captcha With Selenium and 2Captcha (JAVA)

I have been struggling with solving captcha using selenium, java, 2captcha's api. It clicks the verify button but doesn't solve the picture, no errors pop out.. Here's my code: private void solveCaptcha(String apiKey) { String googleKey =…
DM Malkawi
  • 37
  • 2
  • 8
2
votes
0 answers

Using 2captcha with Selenium in Python

How can I integrate 2captcha with Selenium? There is an example code on github for requests, but I could not figure out how to use 2captcha with selenium. import requests from time import sleep # Add these values API_KEY = '' # Your 2captcha API…
edyvedy13
  • 2,156
  • 4
  • 17
  • 39
1
vote
0 answers

selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element Even tho its there

I've been trying to access this element I have tried XPATH, CSSSELECTOR and none worked. I'm trying to acces sitekey= and pass it into a variable. I'm expecting the function to return the sitekey to a variable. Heres is my…
1
vote
2 answers

How to submit token for recapcha from 2captcha, Python, Selenium?

I want to solve the ReCaptcha with the 2captcha API. Check this image, there is no submit button for the recaptcha. I can send request to 2captcha and get the g-recaptcha-response from 2captcha. Then I use the following code to insert the…
JamesHorab
  • 107
  • 1
  • 1
  • 7
1
vote
1 answer

Bypassing recaptcha v2 using python requests

this is a web scraping project I'm working on. I need to send the response of this v2 recaptcha but it's not bringing the data I need ` headers = { 'accept':…
1
vote
2 answers

No callback in htcaptcha implementation

I am trying to automate the login on the website called stake.us. They had implemented a hcaptcha to stop bots from logging into the website. I am using 2captcha service to get the solution for the captcha. Now the verification code that is supplied…
Tarster
  • 105
  • 1
  • 1
  • 9
1
vote
2 answers

How does 2captcha and apify like captcha solving services replicate my captcha using data-sitekey internally?

As I understand from various blogs that sites like 2captcha is a human-powered image and CAPTCHA recognition service. It's main purpose is solving your CAPTCHAs in a quick and accurate way by human employees who are always online to receive my…
Himanshu Poddar
  • 7,112
  • 10
  • 47
  • 93
1
vote
1 answer

geetest captcha v4 bypass

I use service to solve geetest v4 captcha which give me data like…
1
vote
0 answers

Captcha reappears using 2captcha token in Selenium

So I am trying to bypass the captcha in this page https://divulgacione14.registraduria.gov.co/ using 2captcha, Selenium and python. An image captcha appears after the "Consulta" button has been clicked a couple of times. Everything is working fine…