vote up 2 vote down star
1

what tools are there to actually test a web application?

e.g. test the login process, password recovery etc.

(not unit testing).

flag

44% accept rate
1  
what else is there other then unit testing? you can test by hand... – Mike Valstar Oct 27 at 22:08

8 Answers

vote up 9 vote down check

Try Selenium. You can record tests right in Firefox, tweak them in the language of your choice, and then run them from the browser or a dedicated test machine. Cool stuff.

link|flag
+1 Selenium... Very handy tool. – Andrew Flanagan Oct 27 at 22:15
vote up 0 vote down

Hey.
HP QuickTestPro, or IBM RationalRobot.

link|flag
vote up 0 vote down

Another alternative to Selenium is WatiN (Web Application Testing in .NET). Same thing, you can record tests, modify and run in IE or Firefox.

link|flag
vote up 0 vote down

Webrat is awesome for request/response testing. I concur that Selenium is great for testing web browser functionality, for example, using Javascript.

link|flag
vote up 0 vote down

Tellurium uses groovy + selenium to take a more modular approach to gui testing. It also has a firefox plugin to record UI layouts and map them to your tests. http://code.google.com/p/aost/wiki/UserGuide070Introduction?tm=6

link|flag
vote up 0 vote down

Not sure why you don't want "unit testing"... you can script a unit testing package like HtmlUnit to test your login and password recovery processes pretty well.

link|flag
vote up 2 vote down

A huge list can be found here http://www.softwareqatest.com/qatweb1.html

link|flag
vote up 1 vote down

Watir and Autoit

link|flag

Your Answer

Get an OpenID
or

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