1

One of the API parameters can hold values like “2343242,999324” . How can I specify this in Data CSV config because currently If I do specify the request just takes 2343242 and not the comma and 999324 part. I have made Allow quoted data to True as well. Anyone pls ?

suprinder
  • 11
  • 3
  • Possible duplicate of [Dealing with commas in a CSV file](https://stackoverflow.com/questions/769621/dealing-with-commas-in-a-csv-file) – wha7ever Oct 05 '17 at 21:01

2 Answers2

1

You can do the following steps to achieve it:

1) Set Allow quoted data to True
2) Change Delimiter(use '\t' for tab) from , to | in CSV DataSetConfig.
3) Separate datadriven values in csv file by | rather than ,

Eg: anyNumericValue|"2343242,999324"|anyTextValue

Dinesh
  • 27
  • 6
0

You can specify in CsV Datadet any delimiter you want , for example ; instead of , :

UBIK LOAD PACK
  • 32,675
  • 4
  • 66
  • 109