Skip to main content

Manual testing - Brief Summary

Manual testing is a type of software testing in which testers execute test cases without the use of automation tools or scripts. Instead, testers follow a series of predefined steps to verify that a software application or system functions correctly and meets its requirements.

Manual testing is an essential part of the software testing process and is typically performed alongside automated testing, where applicable.
Here are some key aspects of manual testing:
Test Case Design: Testers create test cases based on the software's requirements, specifications, and design documents. These test cases outline the steps to be followed, the expected results, and any necessary preconditions.
Test Execution: Testers manually execute the test cases by interacting with the software just like a user would. They input data, navigate through the user interface, and observe the system's behavior.
Exploratory Testing: In addition to predefined test cases, manual testers often perform exploratory testing, where they explore the software without specific instructions. This helps uncover unexpected issues and usability problems.
Regression Testing: Manual testing is commonly used for regression testing, where existing test cases are re-executed to ensure that new changes or features haven't introduced defects in previously working parts of the software.

Usability Testing: Manual testing is crucial for assessing the user-friendliness of a software application. Testers evaluate the software's interface, navigation, and overall user experience.
Ad Hoc Testing: Testers may perform ad hoc testing, which involves testing the software informally and intuitively to identify issues that might not be covered by formal test cases.
Boundary Testing: Testers check how the software behaves at the boundaries of its input ranges, such as minimum and maximum values, to identify potential vulnerabilities or errors.
Compatibility Testing: Manual testing is used to verify that the software works correctly on various devices, browsers, and operating systems.

Accessibility Testing: Testers ensure that the software is accessible to users with disabilities by manually checking compliance with accessibility standards.
Security Testing: While automated tools can help with security testing, manual testers may still be needed to assess the software for vulnerabilities, such as injection attacks or authentication issues.
Documentation: Manual testers often contribute to the creation and maintenance of test documentation, including test plans, test cases, and defect reports.
Feedback and Reporting: Testers report defects and issues they encounter during testing. They provide detailed information to developers, helping them understand and fix the problems.

Manual testing has its advantages, such as adaptability to changes in the software, the ability to assess usability, and cost-effectiveness for small-scale projects or when automated testing isn't feasible. However, it also has limitations, including the potential for human error and the inability to perform repetitive tasks as efficiently as automation. Effective testing strategies often combine manual and automated testing to maximize test coverage and minimize the risk of software defects.

Comments

Popular posts from this blog

What is Installation testing?

Installation testing is done to verify whether the hardware and software are installed and configured properly. This will ensure that all the system components were used during the testing process. This Installation testing will look out the testing for a high volume data, error messages as well as security testing

Explain Peer Review in Software Testing

It is an alternative form of Testing, where some colleagues were invited to examine your work products for defects and improvement opportunities. Some Peer review approaches are, Inspection – It is a more systematic and rigorous type of peer review. Inspections are more effective at finding defects than are informal reviews.Ex : In Motorola’s Iridium project nearly 80% of the defects were detected through inspections where only 60% of the defects were detected through informal reviews. Team Reviews – It is a planned and structured approach but less formal and less rigorous comparing to Inspections. Walkthrough – It is an informal review because the work product’s author describes it to some colleagues and asks for suggestions. Walkthroughs are informal because they typically do not follow a defined procedure, do not specify exit criteria, require no management reporting, and generate no metrics. Pair Programming – In Pair Programming, two developers work together on the same program at...