CSV Writer
formatting...Write values to a CSV file.
Info
CSV files must have headers for each column, since these are used to reference the value.
When setting the value of the variable there must be one value per specified header.
Format
Value is the path, relative to requests/
, to a file ending with .csv
.
Arguments
Name | Type | Description | Default |
---|---|---|---|
headers |
list[str] |
comma separated list of headers to be used in destination file | required |
overwrite |
bool |
if destination file exists and should be overwritten | False |
Example
And value for variable "AtomicCsvWriter.output" is "output.csv | headers='foo,bar'"
...
And value for variable "AtomicCsvWriter.output" is "{{ foo_value }}, {{ bar_value }}"