Exporting Variables

Is there a way to easily export my saved variables into a Word or Excel file? I would like a spreadsheet of them, but I am not sure how to get them from the browser automation into an actual file

You can write the values of your variables to a line in a CSV file with

{
  "Command": "store",
  "Target": "${yourVAR1}",
  "Value": "!csvLine"
},
{
  "Command": "store",
  "Target": "${yourVAR2}",
  "Value": "!csvLine"
},

!csvLine is an internal var that stands for the line in the CSV file. Once you are done adding var values (columns) to !csvLine, you can save this line (row) with thecsvSave command.

This CSV file shows up in the “CSV” tab of Kantu.

And with the new localStorageExport command you can save any file from the CSV tab to the hard drive.

Excel can then read the CSV file.