What is Manual testing with example
Manual testing is a process of manually testing software applications to ensure that they are working as expected. It involves executing test cases by a human tester without any automation tools or scripts. Manual testing is a fundamental and essential part of the software testing process.
Here is an example of manual testing:
Suppose you are working on a web application that allows users to sign up for an account. As a manual tester, you would typically create a test plan, which includes various test cases that cover different scenarios.
One of the test cases could be to test the user sign-up process. You would start by opening the web application and navigating to the sign-up page. Next, you would enter the required details, such as name, email, and password, into the appropriate fields. You would then click the “Submit” button and wait for the page to load.
Once the page loads, you would verify that the user account was created successfully by checking if a confirmation message appears on the screen. You would also check if the user can log in using the credentials they just created.
During this entire process, you would be keeping track of any issues or defects that you find and reporting them to the development team. The development team would then fix the issues, and you would re-test to verify that the fixes have been implemented correctly.
This is just one example of manual testing, and there are many other scenarios and test cases that a manual tester would typically execute to ensure the software application is functioning as expected.