I’m working on a keyword driven framework which has data written in excel sheet.
Each row represents a test case.Initally, table containing data is read . How do i give each row to selenium parallely. I would like to know , how to run the rows of excel sheet parallely. How to make selenium grid work parallely ,for a framework without junit and testng
I’m working on a keyword driven framework which has data written in excel sheet.
Share
If you can’t use TestNG or jUnit, you’ll need to just use your own mulithreaded runner. That’s going to be considerably more difficult, but it’s certainly doable. That’s all these other tools would do under the covers for you anyway.