I'm trying to execute REST Webservice with multiple input from csv file in Postman Runner collection, but in URL param my csv value is not substituting. I followed the same example even that's not working - http://blog.getpostman.com/2014/10/28/using-csv-and-json-files-in-the-postman-collection-runner/
When I generate the report file - I'm seeing the URL request is going like this
_http://dump.getpostman.com/get?username={{username}}&password={{password}}
instead of
_http://dump.getpostman.com/get?username=ankith&password=abc
What I'm missing here, why actual value is not taking from csv file, it would be really appreciated if someone can help me to fix this issue