V-Model (Verification and Validation Model)

V-Model is software development model and V-model is also known as Verification and Validation model. It is basically extension of waterfall model but unlike water fall model here in V-model, testing is done simultaneously with the development phase. The main disadvantage of water fall model i.e. the Testing Starts after Development ends. But in V-model … Read more

Core Java Interview Questions For Selenium WebDriver – Part 3

Part 3 11 : Why main method is static? Answer : As we know, We can access static stuff without creating object of class. Because of static keyword with main method, Java virtual machine can directly call it without creating object of class. This way it will provide kind of root to start execution of program. 12 : What is … Read more

Reports in TestLink

Reports are the core part of test link. Test Link gives us lots of option to create a report as per our need. We can create different reports for a test project. You need to navigate on ‘Reports’ screen and there you will get options to generate reports like Test Plan Report, Test Report, Test … Read more

What is verification?

Verification is also known as static testing. General flow of software development is, developer develop the software as per the requirement document. But what if there is an ambiguities in requirement documents? What if the requirement is not complete? There are many possibilities. If by ignoring all the possibilities. And developer keeps on developing the … Read more