1functional tests (positive/negative, UI)
2smoke tests
3regression tests
4integration tests
5API
6Database
7end to end testing
8data driven
9
1
2Tests that should not be automated:
3
4Tests that you will only run only once.
5The only exception to this rule is that
6if you want to execute a test with a very large
7set of data, even if it’s only once,
8then it makes sense to automate it.
9
10Tests that need to be run ASAP Usually,
11a new feature which is developed requires
12a quick feedback so testing it manually at first
13making sense.
14
15