How to QA websites?

qa

I am wondering if there is a detailed list of tools/practices that can be used to QA websites. The tools that seem to get most mention are link checkers, validators and Selenium IDE. In my capacity, only the link checker and validator seem to work well. I'm not a QA specialist, so I don't know what it is that they do and want to be more informed about this topic.

Best Solution

There are numerous resources to get you started in testing. I suggest doing a little reading offline and online. One great testing book is How to Break Software, by James Whittaker. He's also got a follow up book that I am currently reading How to Break Software Security.

More important than the tools you use and the technology of the target application (web, java, c#, ...) is your approach to testing. What are the requirements of your system? What is it supposed to do? What is it not supposed to do? Start with these broad questions and use them to drill down into more specifics like Should the FizzBuzz module allow duplicate entries?

You cannot just jump directly into test tooling, as they are just tools, and without the right testing approach, they could do more harm than good.

Related Question