Selenium Data Driven Framework : Running Test In Different Browsers

We have Implemented loadWebBrowser() and  closeWebBrowser() functions In PREVIOUS POST to centralize browser loading activity. Now supposing you wants to run your webdriver  test In any other browser like Google Chrome then how will you do It? Our framework should have some facility to run selenium webdriver  test In your desired browser. Let us do It.   STEP … Read more

Introducing Selenium Webdriver In Data Driven Framework

Our core data driven framework creation part Is over In STEP 21. Now this Is the right time to Introduce selenium webdriver In our selenium data driven framework. If you are totally new to selenium webdriver then you must have to visit webdriver tutorials PART 1 and PART 2 pages where you will find the links … Read more

Create Required .xls Files For Selenium WebDriver Data Driven Framework

STEP 6 Prerequisite : All required class files should be created as described In STEP 5. After creating all required classes under different packages, Now It Is time to create required .xls files. Please note here that this framework will not support .xlsx files but It will support only .xls files so please create only .xls … 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