Multiple request with diferent URL

Hello guys,
I have a test that is working perfectly, so I need to replicate the test in different URLs. I can’t set a variable because I am able to set only one option and that’s not the purpose, I need to execute the same test in almost 15 different URLs.
so is any option to set different URLs in the same request?

Hi @JuanesMesa

The first option that springs to mind is to create a CSV with your URL’s and import it via the collection runner (or Newman/Cli using the -d <source> or --iteration-data <source> options).
You can then grab the value using

pm.iterationData.get("value")

Hi @w4dd325 Thank you very much, Thank you very much, I did it with you advice

1 Like