Hi…
I have about 20 requests that are within their respective folder within the collection. Each request has its own specific data to test against. I want runner to execute each request with its specified data to test against. I have formatted the test data json file as such:
[
{
“/employees”: [
{
“firstName”: “John”,
“lastName”: “Smith”
},
{
“firstName”: “Jane”,
“lastName”: “Doe”
}
],
“/employees/{employeeNumber}”: [
{
“employeeNumber”: “10379”
}
]
}
]
Each property containing the array of data corresponds to a specific request name. So for request: “/employees” there are two iterations to test against. Once that test has completed for that request, the next request will test against its test data.