recaptcha

How to detect a MtCaptcha captcha with Selenium?

How to detect a MtCaptcha captcha with Selenium? Question: I need some help. In my Python code using the Selenium module, the identifier mtcap-image-1 on the website https://top-serveurs.net/gta/vote/midnight-rp is not recognized by Selenium. I would like to know if it is possible to make Selenium recognize a MtCaptcha captcha or if I need to use …

Total answers: 1

Handle Request payload using HTTPX for post data and capcha key to google recapchaV2

Handle Request payload using HTTPX for post data and capcha key to google recapchaV2 Question: I’m trying to send the key I got from anti captcha, an example of the key is like this { "errorId":0, "status":"ready", "solution": { "gRecaptchaResponse":"3AHJ_VuvYIBNBW5yyv0zRYJ75VkOKvhKj9_xGBJKnQimF72rfoq3Iy-DyGHMwLAo6a3" }, "cost":"0.001500", "ip":"46.98.54.221", "createTime":1472205564, "endTime":1472205570, "solveCount":"0" } I’m trying to send the value in the …

Total answers: 1

How to solve the captcha enterprise?

How to solve the captcha enterprise? Question: I need to pass the captcha in steam, captcha kind Recaptcha v2 Enterprise, used the service 2recaptcha.com to pass the captcha, displays an error ERROR_CAPTCHA_UNSOLVABLE, the site itself is written that may require additional parameters such as the parameter s. I will show my code as an example: …

Total answers: 1

sending request to reCAPTCHA Enterprise API fails

Sending request to reCAPTCHA Enterprise API fails Question: I am trying to create ReCaptcha assessment using their REST API in my backend server. From reading the documentation, I understand that the request body contains an instance of Assesment, but when I try to send a request, I receive the following error: TypeError: Object of type …

Total answers: 1

How to run other code when an error occurs?

How to run other code when an error occurs? Question: I need to automatically log into the site, but sometimes a captcha pops up (not always). I have the code ready to run the captcha solving API. How can I activate it only when captcha appears? After opening the site, I have the code: join …

Total answers: 1

GoogleCaptcha roadblock in website scraper

GoogleCaptcha roadblock in website scraper Question: I am currently working on a scraper for aniworld.to. My goal is it to enter the anime name and get all of the Episodes downloaded. I have everything working except one thing… The websites has a Watch button. That Button redirects you to https://aniworld.to/redirect/SOMETHING and that Site has a …

Total answers: 1

How to identify the 32 bit data-sitekey of ReCaptcha V2 to obtain a valid response programmatically using Selenium and Python Requests?

How to identify the 32 bit data-sitekey of ReCaptcha V2 to obtain a valid response programmatically using Selenium and Python Requests? Question: Pretty much new with captcha and Python requests. The captcha documentation says to copy the value of data-sitekey parameter. Here was my attempt, using Selenium to open the url and using Python requests …

Total answers: 2

How can I bypass the Google CAPTCHA with Selenium and Python?

How can I bypass the Google CAPTCHA with Selenium and Python? Question: How can I bypass the Google CAPTCHA using Selenium and Python? When I try to scrape something, Google give me a CAPTCHA. Can I bypass the Google CAPTCHA with Selenium Python? As an example, it’s Google reCAPTCHA. You can see this CAPTCHA via …

Total answers: 6

How to validate a ReCaptcha response server side with Python?

How to validate a ReCaptcha response server side with Python? Question: I’d like to check a response from client generated using react-google-recaptcha in my Signup form. Unfortunately, I don’t see how to validate it server side with Python. I tried recaptcha-client : https://pypi.python.org/pypi/recaptcha-client, but it seems that it’s expecting a response from a generated iframe …

Total answers: 2