Khan
Khan

Reputation: 139

Automate captcha using webdriver?

How to automate captcha using WebDriver?

Is there any alternate method to automate Captcha using Webdriver?

Upvotes: 2

Views: 9354

Answers (3)

bugCracker
bugCracker

Reputation: 3796

You can automate CAPTCHA only using display CAPTCHA value in "alt" attribute.

  1. take CAPTCHA image in WebElement

  2. get value of "alt" attribute

  3. pass alt value in text field

Upvotes: 7

r_D
r_D

Reputation: 598

I came across Death By Captcha.

They have good reviews and also provides API to decode image captchas.

It is a paid service.

Upvotes: 0

Avinash Pande
Avinash Pande

Reputation: 1538

CAPTCHA and barcode are not read/test/handle by Selenium WebDriver.

Selenium WebDriver doesn't support CAPTCHA and barcode.

Upvotes: 0

Related Questions