test case should be automated code example

Example 1: how do you decide which test cases to automate

We can't and shouldn't automate every test case
I would choose automation over manual
-If it is repetitive like data driven
test cases that are supposed to be tested against
multiple test data.
-If the test cases are high priority test cases
-If the functionality is critical functionality
-If the test cases are too long and too difficult to execute.
-I would automate smoke test cases and also
-I would automate regression test cases as much as possible
based on the priority

Also some tests are not the only candidates 
for automation. 
Tasks such as setting up or creating test data
for manual exploratory testing are also great
candidates for automation.

Example 2: test case should be automated

Tests that should not be automated:

Tests that you will only run only once.
The only exception to this rule is that
if you want to execute a test with a very large 
set of data, even if it’s only once,
then it makes sense to automate it.

Tests that need to be run ASAP Usually, 
a new feature which is developed requires
a quick feedback so testing it manually at first
making sense.

Tags:

Misc Example