0
votes

I'm looking to implement regression testing of my web apps before I release them.

Simply put, I'm looking for something that could do the following:

  1. record tests via a web browser using something like selenium
  2. load those tests into an app
  3. make my required logic/feature changes
  4. run test scripts
  5. view test status (pass/fail)
  6. fix broken tests
  7. rinse and repeat

I'd like a QA person who has minimal coding skills to be able to do the above. This is in addition to coders doing their own lower level regression and unit tests.

Any ideas?

3
What is the question exactly? How to find this kind of people? I'm a QA engineer, and what you describing is part of what I do. I use Selenium RC + perl script (because I do much more than testing a web site), and produce an HTML report automatically. - Julien

3 Answers

1
votes

You can use IBM's Rational Robot tool for doing all the above.

1
votes

I'd have a look at

  1. Testcomplete. Commercial tool.
  2. AutoIt. Free
0
votes

Selenium RC does work well for what you are describing. I was able to use TestNG to manage the Selenium tests. Both good and both free!