Tell me more ×
Software Quality Assurance & Testing Stack Exchange is a question and answer site for software quality control experts, automation engineers, and software testers. It's 100% free, no registration required.

I am trying to automated Q/A testing for a Web App--Basically, after a code update is run, "check these three parts of the Web App, and email me if an error is encountered."

What would be the best way to do this?

share|improve this question
Even though this question has to do with Web Apps it's not correct for this stack (this stack is about their features). It should go to the Software Quality Assurance stack. – Dez Jun 5 '12 at 16:36
ah ok, didnt even know that stack existed... You can close this question then, and I will look over the other stack... Thanks – Josh Brower Jun 5 '12 at 16:40
3  
Selenium is widely used. Do you have more information about this app? Is it Flash, straight HTML, JavaScript? – Ry Jones Jun 5 '12 at 23:46

migrated from webapps.stackexchange.com Jun 5 '12 at 22:53

4 Answers

There are many ways to approach this, and what is "best" will depend on your skills and point of view.

Google's BITE record and playback chrome extension might do the trick.

If you are looking for an open source solution that requires development then you should look into using selenium http://seleniumhq.org.

share|improve this answer

Selenium is a good option to do web app automation testing, you can convert your functional test cases to selenium scripts and run them when you need to regress the entire app or the part of the app. But let me tell you that selenium has limitations, and you should check on those limitations and then decide if it will be effective for your purpose.

share|improve this answer
I'm curious what limitations you are referring to? If it is html/javascript based then selenium is the way to go. If you're talking about flash/silverlight/activex or something similar then you need to look at alternatives. – Sam Woods Jun 6 '12 at 17:28

I currently use WinTask for this.

Like Bruce, I agree that "best" means different things to different shops, and is context-specific.

share|improve this answer

Selenium is a good open source tool for automation.

Cucumber/Watir are other alternatives.

Sikuli is a screenshot comparison tool that can do a lot more than just compare pixels. We are evaluating it for use with some of the Flex components in our application. AFAIK, all other automation tools (at least the ones I know) require some modification at application compile time (inclusion of automation APIs etc).

But as others have responded, it all depends on what your needs are.

Note: I'd have posted links to all the tools, but I am new around here and apparently can't post more than 2 links until I become a little more respectable and trustworthy.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.