How To Handle Exception In Java : Tutorials For Selenium WebDriver

Anyone don’t like exceptions and at the same time, anyone can not hide himself from exceptions when running webdriver software automation tests because (What Is An Exception? :->) exception Is an error event generated during the execution of webdriver test case or java software program which disrupts test execution In between. Exception can arise due to … Read more

WebDriver Test Data Driven Testing Using TestNG @DataProvider Annotation

Data driven testing Is most Important topic for all software testing automation tools because you need to provide different set of data In your tests. If you are using selenium IDE software automation testing tool and you wants to perform data driven software testing in your software test then THESE POSTS will helps you. For … Read more

How To Skip WebDriver Test In TestNG

If you remember, I have posted many posts on TestNG Framework and you will find all those posts on THIS LINK or you can VIEW THIS PAGE for all related posts listing. Study all of them one by one on posted date order for your better understanding. Till now we have learnt about how to Include … Read more

Creating Object Repository Using Properties File In Selenium WebDriver

In selenium WebDriver software automation testing tool, There Is not any built In facility to create object repository. So maintenance of page objects(Page element locators) becomes very hard If you will write all objects of page on code level. Let me give you one simple example – You have one search button on page of software … Read more