Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working on Selenium IDE for writing the test cases for a registration form. The registration form has a CAPTCHA image so I am not able to proceed with the automation, What could be the best solution to go ahead with? If I can provide a break point and let the user type it manually, then what is the command for carrying out that action? What are the best possible solutions with the complete commands>?

share|improve this question

2 Answers

Fun Fact: When you can't automate it, the CAPTCHA is doing it's job. :>

share|improve this answer

Solution # 1 Temp remove the CAPTCHA for the testing

Solution # 2 (As you mention to provide a break point to insert captcha manualy) 1. Try prompt a text box for user to key in the captcha, and store in variable example: storeEval | prompt("Enter Captcha:") | varName

  1. Then type the varName text in to your captcha text box example type | id=CaptchaText | ${varName}

Hope this helps.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.