I have a Website https://www.ultimateqa.com/complicated-page/ on the website there is a form to fill in that has a Captcha which produces random numbers and asked the user to do the addition and enter a number.
I am trying to do this on Selenium using Java.
How can I verify the random numbers, take themr, do the calculation and then add the answer to the input field?
Locate web element holding the captcha challenge
WebElement element = driver.findElement(By.className("et_pb_contact_captcha_question"));
Get its text into a String:
String captchaText = element.getText();
Evaluate the string value using i.e. ScriptEngine
String captchaResult = new javax.script.ScriptEngineManager().getEngineByName("javascript").eval(captchaText).toString();
That should be it:
In more complex captcha challenges where you cannot find the values in the page source you will have to go for an OCR or image recognition library like OpenCV or Tesseract or SeeTest