Multiple choice technology testing

Automation Testing should be done before starting Manual testing. Is the above statement correct?

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Manual testing should typically come before automation. Initial exploratory testing and test case design are done manually to understand the application. Automation is then applied to stable, repetitive test cases after manual testing has validated them. Starting with automation without understanding the system through manual testing is inefficient.

AI explanation

To answer this question, let's discuss the concept of automation testing and manual testing.

Automation testing involves using software tools to perform tests and compare the actual results with the expected results. It is typically used for repetitive tasks and regression testing. On the other hand, manual testing involves manually executing test cases, observing the application's behavior, and comparing the actual results with the expected results.

Now, let's evaluate the given statement:

Automation Testing should be done before starting Manual testing.

This statement is incorrect.

Automation testing is often performed after manual testing. During manual testing, testers gain a deeper understanding of the application's functionality, usability, and user experience. They can identify potential areas for automation and create test cases that are suitable for automation.

By performing manual testing first, testers can ensure that the application meets the desired requirements and functions correctly. Once manual testing is complete, automation testing can be used to automate repetitive tasks and ensure that previously identified functionalities and scenarios continue to work as expected.

Therefore, the correct answer is B) False.