currently, I am running my postman scripts using Newman by the following command Newman run [filename] .json -e [env name]
I have the env.json file set up, but for one of my variables there could be more than 1 input and I would like to control what to call from the command line... for example in my env file now we have
{
"key": "type",
"value": "collection",
"description": "",
"enabled": true
},
the type could either be "collection" or "series" and I would like to be able to run the test and giving the input from the command line .. instead of creating another .json env file.
Thanks,