Form is not filling from CSV data

I have a CSV with two columns. For some reason this command is not working (it’s only highlighting the field green but not filling in anything):

{
“Command”: “click”,
“Target”: “id=fab-search-input”,
“Value”: “${!COL1}”
},

However, the hard-coded version works:

{
“Command”: “click”,
“Target”: “id=fab-search-input”,
“Value”: “hello”
},

Any ideas?

It’s worth noting that the following command later in the same script is working as expected:

{
  "Command": "type",
  "Target": "id=csvtype-1-9-threshold",
  "Value": "${!COL2}"
},

I have tried the following as well but still no luck:

{
“Command”: “click”,
“Target”: “id=fab-search-input”,
“Value”: “${!COL2}”
},

What is the content of column 1? Maybe some tricky special characters?

I think I may have found the solution. The command should be ‘type’ not ‘click’ as recorded by the macro.