Typing and selecting first element from dropdown

So, as part of the data entry that I would like to automate, there is a dropdown menu where you can type the name and click the first element that appears. I had it working in Katalon Recorder, but for some reason, Kantu refuses to proceed. The snippet of code in question:

{
“Command”: “type”,
“Target”: “//ng-form/div/div/input”,
“Value”: “{!COL1}" }, { "Command": "store", "Target": "{!COL1}”,
“Value”: “!csvLine”
},
{
“Command”: “click”,
“Target”: “//li/div[3]/a”,
“Value”: “”
},

It just constantly loops onto the Type part and never proceeds to the next step. There must be something I’m doing wrong.

Any help would be appreciated.

Is this the real JSON? It looks like a typo.

This should work for form filling:

{
“Command”: “type”,
“Target”: “//ng-form/div/div/input”,
“Value”: “${!COL1}",
},

It still tries to do the same thing over and over again.

Can you please post a test macro for us?

Here is the whole macro, but the site in question is behind a login:
{
“Name”: “AdaraImpPixel_Sub”,
“CreationDate”: “2019-4-9”,
“Commands”: [
{
“Command”: “csvRead”,
“Target”: “SampleSpreadsheet_Imp.csv”,
“Value”: “”
},
{
“Command”: “click”,
“Target”: “//ng-form/div/div/input”,
“Value”: “”
},
{
“Command”: “type”,
“Target”: “//ng-form/div/div/input”,
“Value”: “{!COL1}" }, { "Command": "store", "Target": "{!COL1}”,
“Value”: “!csvLine”
},
{
“Command”: “click”,
“Target”: “//li/div[3]/a”,
“Value”: “”
},
{
“Command”: “click”,
“Target”: “//form/div[2]/input”,
“Value”: “”
},
{
“Command”: “type”,
“Target”: “//form/div[2]/input”,
“Value”: “{!COL2}" }, { "Command": "store", "Target": "{!COL2}”,
“Value”: “!csvLine”
},
{
“Command”: “click”,
“Target”: “//div[5]/input”,
“Value”: “”
},
{
“Command”: “storeValue”,
“Target”: “//textarea”,
“Value”: “AdaraImpPixelTagLink”
},
{
“Command”: “storeValue”,
“Target”: “//div[2]/textarea”,
“Value”: “AdaraImpImagePixelTagLink”
},
{
“Command”: “store”,
“Target”: “{AdaraImpPixelTagLink}", "Value": "!csvLine" }, { "Command": "store", "Target": "{AdaraImpImagePixelTagLink}”,
“Value”: “!csvLine”
},
{
“Command”: “csvSave”,
“Target”: “SampleSpreadsheet_ImpFinal.csv”,
“Value”: “”
},
{
“Command”: “localStorageExport”,
“Target”: “SampleSpreadsheet_ImpFinal.csv”,
“Value”: “”
},
{
“Command”: “click”,
“Target”: “//div[3]/button[2]”,
“Value”: “”
}
]
}