What is manual testing?

Manual testing is a type of software testing method, where the tester has to find product bugs. Here the tester plays the role of end-user and executes test cases manually to verify the features and behavior of the product.

Contents

Manual Testing

If any software application is developed, it is important to test its features and functionalities. There are few research methods and tools to test the software before bringing it to the market. Manual testing in order to identify essential bugs is a very primitive form of test. As the manual name suggests, the execution of test cases occurs one by one. For manual testing, any automation tool support is not needed.

In general, we can say that testing is of two types. One is manual testing carried out by humans, and the other is automation testing performed using automation tools. But the ultimate goal of performing testing is to find the defects.

A software product is divided into small pieces, to make the testing process easy. This testing helps to find if the product is meeting all the predefined behavior. A student with basic system knowledge can do manual testing. We know that 100% automation is not possible, hence manual testing is crucial.

Stages in manual testing

1.Unit testing

In the early stages, developers conduct the unit test. The small individual components of the source code have checked this process. Unit testing aims to verify the functionalities of individual components. The smallest testable individual part here is the unit.

The unit test case, such as testing whether or not a clickable button is working, would be a fundamental one.

2.Integration testing

In integration testing, as the name says integrate individual elements to test as a whole. This testing approach helps the QA’s to understand, how multiple components of software works to give the desired output. Performing integration testing along with development helps to identify the locate bugs early.

3.System testing

Integration of all individual modules to a system to test entire system functionality is system testing. It helps the QA’s to analyze if the system meets the desired functionality. This testing includes many steps like verifying output for a particular input.

These teams may also perform several other tests like regression testing, functional testing, and stress testing.

4.Acceptance testing

Testing of the entire system as a whole to check the real-world reliability of the system is acceptance testing. For any system, both internal and external acceptance testing is required. Internal members of the organization have to perform internal acceptance testing(Alpha testing). End-users have to perform external acceptance testing(beta testing).

This method helps to identify the bugs at the last stage before releasing the product into the market.

Manual testing Types

1.White box testing

White box testing is also known as transparent testing or glass box testing.
The tester should know the internal structure and code of the application to conduct the white box testing. Hence, developers perform this testing while doing unit testing. This testing includes control flow testing, path testing, data flow testing, branch testing, decision coverage, and statement coverage.

2.Black box testing

The tester need not have an internal structure or code knowledge to do black-box testing. In black-box testing, QA interacts with the application, to know the functional and non-functional properties of it.

3.Grey box testing 

Grey box testing is known as a mixture of white-box and black-box tests. Whose goal is to identify the bugs and defects caused by misusage of an application or due to ti its structure. Grey box testing helps to fix the critical bugs in the application.

How to do manual testing?

To perform manual testing on any software product, the tester should understand the requirements first. That includes how the software is expected to work. Tested needs to understand the document specifications and write the test cases. And below are the steps performed by a software testing company.

  1. Examine the required specifications from the software specification document.
  2. Prepare an optimized test plan.
  3. Write the test cases that fulfilled all the requirements from the document.
  4. Ask your QA lead to review the test cases.
  5. Execute these test cases and locate the bugs.
  6. Report the obtained bugs if any.
  7. After fixing the reported bugs, re-run the test cases to re-verify the fixes.

Advantages of manual testing

  • Low testing cost as no extra tool is required
  • Possibility of identifying most of the bugs
  • Human testers can test and analyze bugs well

Conclusion

Although human efforts are important at intervals in the software life cycle, we can not avoid doing manual testing. Therefore, for manual and automation testing, the development teams will then find the stages to be implemented. A QA with an open mind, active mind, and patience can only perform manual testing.

Also, refer to the below article for:

Difference between Java and JavaScript

Difference between C and C++ Programming languages

 

One thought on “What is manual testing?

Leave a Reply

Your email address will not be published. Required fields are marked *