Welcome to the new Parasoft forums! We hope you will enjoy the site and try out some of the new features, like sharing an idea you may have for one of our products or following a category.
How to Handle CAPTCHA in Selenium Automation?
gijelo2298
Posts: 1 ✭
in Selenic
Comments
-
You could add a delay in your Selenium test to give you time to manually interact with the browser to solve the CAPTCHA. In Java, you can call Thread.sleep(millis). Otherwise, you would need to somehow disable the CAPTCHA in your test environment, possibly using a custom or modified deployment of your web application. As an example, it looks like Google's reCAPTCHA has some way of doing this: I'd like to run automated tests with reCAPTCHA. What should I do?
0