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

I want set up automated regression tests for a website -- the user fills out forms and I want to check for correct responses.

Can anyone recommend tools for automating this?

share|improve this question

4 Answers

up vote 3 down vote accepted

You might want to check out StackOverflow Question 417380, which compares WatiN and Selenium for automated web testing.

share|improve this answer

Take a look at Selenium, it should provide you with what you need.

Specifically look at

http://seleniumhq.org/projects/remote-control/

You can write your tests in a number of different languages (C#, Java, Python) etc...

Here's an example (using XPath) to populate a number of text fields (Java example):

http://patrickwilsonwelsh.com/?p=47

share|improve this answer

Have a look at Selenium.

share|improve this answer

WatiN is a good alternative. I've used both this and Selenium and like both. Each has particular strengths.

share|improve this answer
5  
"Each has particular strengths" - Which are? – jfar Apr 28 '10 at 17:24

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.