Friday, May 20, 2011

Reasons why we should (or shouldn’t) automate a test?

Below are some factors to consider to help identify which manual tests should or should not be automated. Just because you can automate something doesn’t necessarily mean that you should. Here are some guidelines to help identify good candidates for test automation:

Tests that should be automated:

Tests that need to be run against every build/release of the application, such as smoke test, sanity test and regression test.
Tests that utilize the same workflow but different data for its inputs for each test run (data-driven and boundary tests).
Tests that need to gather multiple information during run time, like SQL queries and low-level application attributes.
Tests that can be used for performance testing, like stress and load tests
Tests that take a long time to perform and may need to be run during breaks or overnight. Automating these tests maximizes the use of time.
Tests that involve inputting large volumes of data.
Tests that need to run against multiple configurations — different OS & Browser combinations, for example.
Tests during which images must be captured to prove that the application behaved as expected.

Important: Remember that the more repetitive the test run, the better it is for automation

Tests that should not be automated:

User experience tests for usability (tests that require a user to respond as to how easy the app is to use).
Tests that you will only run one-time. (This is a general rule. I have automated one–time tests for data population situations in which the steps can be automated quickly, and when placing in a loop can produce thousands of records, saving a manual tester considerable time and effort)
Test that need to run ASAP.
Tests that require ad hoc/random testing based on domain knowledge/expertise.
Tests without predictable results. For automation validation to be successful, it needs to have predictable results in order to produce pass and fail conditions.
If a test needs to be manually “eyeballed” to determine whether the results are correct.
Test that cannot be 100% automated should not be automated at all — unless doing so will save a considerable amount of time.
What would you add or remove from this list? Let me know.

No comments:

Post a Comment