-1

I'm trying to load a webpage which contains Google reCaptcha using BrowserMobProxy. Although web page is loading but with captcha there are issues. Is that even possible?

  • Please can you post the code (or part of it)? Do you mean java or javascript? If you mean javascript, can you check the browser console for errors? – optimusfrenk Apr 29 '20 at 09:23
  • i mean java. I am trying to bypass captcha using Request Interceptor by modifying the request in proxy server.. – Annapurna Pal Apr 29 '20 at 10:07

1 Answers1

1

The main reason behind captcha is NOT to provide automation capabilities to the web application.

I think this has been answered many times in SO. Question1, Question2

If you need to automate a webpage with a captcha verification, the usual procedure is to request an application build that has captcha verifications disabled. The google captcha is tested by google anyway and you don't add any value to your test bed by verifying it's functionality. You should be focusing on actual test scenarios in your app. And to verify if the captcha is working correctly with your app, you can have a single manual test case.

(This is if you are actually trying to test a web application. If you are up to something sketchy, well, you won't be able to do it. :) )

debugger89
  • 2,108
  • 2
  • 14
  • 16
  • Is there any way I can block captcha from loading itself using Request interceptor? – Annapurna Pal Apr 29 '20 at 10:05
  • I don't think you can do that. At least I don't know any way to do it. If you are testing an application request a captcha free build from the dev. – debugger89 Apr 30 '20 at 09:15