Recaptcha : How to automate recaptcha

I want to login to a web application.
I’ve username, password, and reCAPTCHA.
How can I skip or automate recpatcha? Any suggestion will highly be appreciated.

That’s what CAPTCHA are designed for! to avoid robots to go through and run scripts…

kishor sharma said:

I want to login to a web application.
I’ve username, password, and reCAPTCHA.
How can I skip or automate recpatcha? Any suggestion will highly be appreciated.

That’s what CAPTCHA are designed for! To avoid robots to go through and run scripts…

@philippe barthelemy yeah I know, but what if we want to automate? is there any way to automate?

@Kishor Sharma, I am thinking work around for this solution.

My approach :

Step 1 : Take screen shot of the CAPTCHA and store it in a location C:\\

Step 2 : Create a python program to convert image in to text and store it file C:\\ cap.txt

Step3 : Execute python script from Katalon (Runtime.getRuntime().exec(“path of the file .vbs”))

Step4 : Katalon script will read the value from file C:\\ cap.txt

Step5: pass the value in to application.

I know this little tricky and hard. but I feel this is the only solution.