Hi I have a request body look like:-
“ABC”: [
“a;a;local;wifi” , “a;a;local;wifi”, “a;a;local;wifi”
],
So i want to automate this by importing csv for the string values in this array ABC.
Please help me how to import multiple bulk data via CSV… Let me know the Postman changes and CSV file how to create. I’m using Excel and saving that as .csv
I’ve tried below solutions but it is only importing single value
I’ve made json file as:-
“ABC”: [
{{ABC}}
],
And in CSV i’ve passed in excel as column name ABC with multiple values in that column as :
ABC
“a;a;local;wifi”
“a;a;local;wifi”
“a;a;local;wifi”
“a;a;local;wifi”
The collection runner will run once for each row in your CSV file.
Your request body JSON appears to be an array of strings.
If you really want to send this data in one go (as a single request) then you will need to store the data in a single row\column in the CSV file (enclosed in brackets so that it gets treated as an array).