Reputation: 11
I have N number of test cases in my csv file and i have added it as a test template as shown below
Test Template My test template
*** Test Cases ***
sample testcase ${field1} ${field2} test1 test2
*** Keywords ***
My test template
[Arguments] ${field1} ${field2}
/* some code here */
Let say i have a csv file like the below which has more than 100 records
Now if i have to run all these in parallel, can anyone explain how to do that?
Tried pabot -testlevelsplit and pabot --processes N [path to tests] but this runs only one test and does not support when we have case like the above for data driven testing
I am expecting to run all tests in parallel for data driven testing scenarios
Upvotes: 1
Views: 185