Back to articles
Software Testing Technique
How-ToTools

Software Testing Technique

via Dev.to Beginnersrenuga devaraj

1. COMMON MANUAL TESTING TECHNIQUES Manual Testing is a process in software development where testers execute test cases manually without using any automation tools. There are several types of Manual Testing 1.Black Box Testing - Test the software functionality without the knowledge of internal code structure. Testers only focus on inputs and expected outputs without considering the internal workings of system. 2.White Box Testing - Test the software functionality and knowledge of code. Usually it performed by developers. 3.Grey Box Testing - Grey-box testing combines both black-box and white-box testing. Testers have partial knowledge of the internal code and structure. Testers create test cases focusing on inputs, outputs, and internal processes. 4.Exploratory Testing –Without following a specific test plan, testers can freely test the software. 5.Usability Testing - It tests the software to evaluate whether its user-friendliness and ease of use. 6.Ad-hoc Testing - The goal is to bre

Continue reading on Dev.to Beginners

Opens in a new tab

Read Full Article
3 views

Related Articles