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

Common Function To Compare Two Double Values In Selenium WebDriver

Comparison of double values Is not much more different than comparison of Integer values as described In my previous post but let me give you example of same so that you can get It better. Let me tell you one thing that comparison of different data types (compare two strings, compare two Integers, etc..) Is pure … Read more