I am trying to run postman request with data driven testing method where the data file is a csv file. I need the csv file to hold the value 00100. But when i save as the excel sheet with 00100 to csv file, the csv file is holding the value as 100 instead of 00100. Because of this, Postman is reading the value from CSV as 100. Does anyone came across this issue? I need help ASAP
CSV files can have values that start with zeros, but donβt use Excel to create the CSV file as Excel will by default strip the leading zeroes.
You could also try the options detailed on the following link and see if any of those work for you.
1 Like
Thanks Mike for helping me out