tags:

views:

138

answers:

8
+2  Q: 

web app testing

what tools are there to actually test a web application?

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

(not unit testing).

+1  A: 

Watir and Autoit

Maestro1024
+2  A: 

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

Perpetualcoder
+10  A: 

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.

Corbin March
+1 Selenium... Very handy tool.
Andrew Flanagan
A: 

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.

Spike Williams
+1  A: 

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

matmcq
A: 

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

Karmen Blake
A: 

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

Adam Neal
A: 

Hey.
HP QuickTestPro, or IBM RationalRobot.

yoosiba