views:

110

answers:

2

Can anyone suggest good testing tools/plugins for use with Firefox? Currently I use firebug and SQLInjector. Are there any others that people enjoy using for QA testing of web based systems?

I know selenium, but we don't currently use it.

+5  A: 

Selenium IDE is the most used and one of the best supported Testing tools. Its a Firefox Addon that allows you to record/updated/replay Web UI Tests. Download it from http://release.openqa.org/selenium-ide/1.0.2/selenium-ide-1.0.2.xpi

I have some tutorials on my site at http://www.theautomatedtester.co.uk/selenium_training.htm

AutomatedTester
Thanks @AutomatedTester. I've found that the tests for my Ajax application seem quite brittle. I'll look through your tutorials.
cagreen
Any suggestions other then selenium? As I said, I know selenium, but just don't currently use it.
llaskin
A: 

Selenium IDE is great as long as your aut is not using flash/flex which this IDE does not support. DejaClick, another FF add-on, is a capture/replay tool I've had some success with but again, no flash/flex support. Kosmo Doyle

KosmoDoyle