DEV Community

Rajeshwari Athota
Rajeshwari Athota

Posted on

Manual testing Task-1

1. Common Manual testing techniques:

-black box texting:
It is functional where tester does not know the internal source code of a program.
-white box testing**:
Tests internal structure of the code from the developers point of view. Here tester have access to source code.

-grey box testing**:
This kind of testing is used in Api testing where tester have limited access to source code. combination of black box and white box testing.

2. Boundary value analysis:
Identify the errors at boundary level.

simple example is age criteria to apply for second degree is above 18(>18). We would test with values that are just above (at 19) and just below boundaries( at 17) and at 18.

3. Decision Table Testing :
Testing involves based on decision table that involves various input combinations and their outputs based on conditions. This ensures software works thoroughly and accurately.
Example: Insurance applicable based on age:
< 18 age
In between: 18-25
25-35
35-50
50-60

60 age

4. Future of Manual testing in the age of AI:

Scope of manual testing is evolving rather than disappearing, manual testing is playing important role for testing specific components or scenarios. AI cannot replace where human involvement and creativity is required.AI can assist the testers to make things faster and easier rather than replace the humans.

Manual testing not vanish but will transform.

Top comments (0)