Make Google Recaptcha Challenge

Is it possible to set some flag in my browser so that I always get RECAPTHCA resolution problems? Sometimes, when you click the โ€œI'm not a robotโ€ button, you get a pop-up message with something like โ€œClick all images containing a car,โ€ but sometimes it just checks the box and takes the word for the fact that you are not a robot.

I would like to test the user interface of my tool both on the desktop and on the mobile device and make sure that the call pops up and interacts well with other elements of the page.

In other words, as a developer, I want Google to think that I am a robot, so that it always gives me a visual challenge.

Is there any way to force this behavior?

Note. I did some research and could not find answers to any questions or blog posts that might provide an answer.

+5
source share
2 answers

I was also looking for similar functionality. Although I did not find a code-based solution to force the problem, I found a pretty reliable hack.

Take the VPN tool (I use IP Vanish), then connect to the remote server (I had success associated with China). Then open the private / incognito window and fill out the form.

From my testing, a combination of a remote IP address and an empty user session calls.

+1
source

I was looking for something similar, and after some research, plus trial and error, what worked for me was to use an invisible recaptcha and invoke the task with JS.

Once you have loaded the recaptcha script into your page, do

grecaptcha.execute() 

and the call will be called.

0
source

Source: https://habr.com/ru/post/1274938/


All Articles