Create Workspace And Project For Selenium WebDriver Data Driven Framework

STEP 1 Prerequisite : 1. READ PREVIOUS POST about what Is webdriver data driven framework for software testing. 2. Eclipse Kepler Should Be Downloaded. VIEW THIS POST (Step 2 : Download and install Eclipse) to see from where to download eclipse. I am using Eclipse Kepler. (Special Note : Please follow each and every step throughout … Read more

What Is Data Driven Framework In Selenium WebDriver

Selenium WebDriver Data Driven Framework Meaning Of data driven keyword In any automation framework Is your test cases and suite will be driven by external data set feed. Data feed can be any type of data sheets like xls file, xlsx file, csv file etc. Main concept of data driven framework Is your test case … Read more

Implementing LogIn And Logout Functions In Selenium WebDriver

Right now, We are learning some commonly used functions which can actually helps us to minimize our webdriver test case code size. As you know, You need to perform some actions (Example : Comparing Strings, Comparing Integers, Compare Double, And More Like This) many times during your test case execution so repeating same code In every … Read more

Implementing openBrowser And closeBrowser Functions In WebDriver Test

Whenever you start your any webdriver test, First of all you need to start your browser. And at the end of your test, You need to close your browser. Now supposing you have 100s of test cases then you will write browser opening and closing code In each and every test? Or supposing you wants … Read more