I have collection variables defined, but I also run my collection with a CSV file. In order for either to work I do a check with a pre-request script with
if (data['SERIAL']) {
// data from file
} else {
// data from collection variable
}
So I have to check for a specific name I can’t just for example check with
if (data) {
// Data from file
} else {
}
I’m sure I’m missign something and hoping someone can point me in the right direction.