| 1. |
Is automated testing making manual testing obsolete? |
|
Answer» No. AUTOMATED testing is not making manual testing obsolete. Though automated tests help avoid regression issues or find problems that you are already aware of, manual exploratory testing is essential to find the bugs you don’t know about, such as incorrect REQUIREMENTS or implementations. Some types of testing, such as exploratory testing, usability, and accessibility testing, NEED to be performed by a human TESTER. Good automation testing tests repeatable test cases which you can reproduce deterministically. It certainly reduces the amount of manual testing that a human tester would perform but does not ELIMINATE it. Once a human tester discovers a bug, they can add automation tests to ensure that it’s caught automatically in the future. |
|