I am on a team, presenting the advantages of Karate to move forward as the framework of choice for our API testing. However, I have come across a couple questions, in regards to data-driven testing.
I have gone through the documentation, csv files and cannot find a solution for this question:
- Is Karate capable of executing tests on specific data sets (For instance, based on priority p0, p1) given in a csv file?
Example "test.csv":
|priority|data1|
| p0 | 1 |
| p0 | 2 |
| p1 | 4 |
| p1 | 6 |
I want to run my test cases with specific data sets in a csv file (p0, or p1, or both). Is Karate capable of this?