Common Manual testing techniques
Boundary Value Analysis
Boundary Value Analysis It's a focus on testing the boundary values or limits of the ranges. It helps to identify the defects at the edges of the given input ranges. For example : Password must in 6-10 characters
5 -- Fail
6 -- Pass
7 -- Pass
9 -- Pass
10 -- Pass
11 -- Fail
Equivalence Partitioning
Equivalence Partitioning In this technique,divides the input data into the valid and invalid partitions. For Example Age limit of 18 to 60
Below 18 age -- Invalid
18 to 60 -- Valid
Above 60 -- Invalid
16 -- Fail
22 -- Pass
61 -- Fail
Decision Table Testing
Decision Table Testing In this techniques, used a table format to outline of various input combination and their expected outputs, ensure the all the cases are covered.
Rule : 1
If the Email ID and Password are correct, the mail will logged in
Rule : 2
If the Email ID is correct and Password is wrong, Error message populated.
Rule : 3
If the Email ID is wrong and Password is correct, Error message populated
Rule : 4
If the Email ID and Password are wrong, Error message populated.
The Future of Manual Testing in the Age of AI
In most of the companies are using the automation testing for identifying the bugs quickly, testing time reduced and the needed the minimum number of tester. However there are some test cases which can't replaced by automation testing. The AI techniques and automated tools can't reproduced the logical thinking, Innovation, Objective analysis of human.
Automated tools executed the code level performing based on the predefined logic. Manual testing techniques is not disappearing. AI techniques can be performed effective for repeat tasks, complexity task, comparing or analyzing the large dataset and the experienced tester have ensure the quality of product

Top comments (0)