Interface In Java : Tutorials For Selenium Webdriver

I described about Inheritance and method overriding in java software development language In my previous post so I am suggesting you to read that post, Specially method overriding concept before learning about Interface In Java software development. If you will go for selenium webdriver Interview then Interviewer will ask you first question : What Is WebDriver? Peoples will … Read more

Data Driven Test Using CSV File In Selenium WebDriver

Earlier we learnt how to perform data driven software automation testing using Java Excel API to read data from excel file In THIS POST. We have also used Apache POI API to read data from excel file In data driven software automation framework creation. Steps to create data driven framework are given on THIS PAGE. Now … Read more

WebDriver how to wait for alert in selenium 2

As we have seen in my previous posts, we can use textToBePresentInElementLocated(By, String) WebDriver condition to wait for text present on page and we can use elementToBeClickable(By locator) to wait for element clickable/present on page. If you read both those posts, We had used explicit waits in both the cases and both are canned expected conditions of webdriver so we … Read more