Skip to main content
CSV

CSV file reading

CSV file reading

Reads a CSV file from a local path and loads its content in memory for the iteration and cell access actions of the CSV group.


Options

CSV file path

Full path of the CSV file to read on the machine the robot runs on, for example C:\Desktop\arquivo.csv. Use the picker button next to the field to browse the available files.

Separator

Character used to separate the values between columns in the CSV file. Default: ;.

Returns

Javascript code

js
actions["action-id"].values // list with the CSV file values arranged in rows and columns (List)
actions["action-id"].count // total number of rows in the CSV file (Number)

Field selection

  • values — list with the CSV file values arranged in rows and columns (List)
  • count — total number of rows in the CSV file (Number)

Rules and Conditions