user2537899
user2537899

Reputation: 9

datadriven testing using selenium webdriver

Im using selenium webdriver for automation testing in my company to automate webapplications, but im using id, xpath and all directly without following any framework , so now im in some prob and have to design the DATA DRIVEN FRAMEWORK .

Please suggest me how to setup DatadrivenFramwework under eclipse.what and all steps to be followed.

Thanks

Upvotes: 0

Views: 9264

Answers (1)

Naveen Chhaniwal
Naveen Chhaniwal

Reputation: 704

If you want to do data driven testing without using any framework. For that you can use JXL API or POI API, with use of these API you can do data driven testing for your web application. It very easy to configure these API with your Eclipse.

Note:- JXL API is now off dated, it only work with .xls files. POI API works with both .xls & .xlsx file.

Upvotes: 1

Related Questions