please help as iam new using katalon recorder and i need to store the select text to the column (result) while iam looping csv file searching google. as shownin below screenshots

please help as iam new using katalon recorder and i need to store the select text to the column (result) while iam looping csv file searching google. as shownin below screenshots
Hi there,
I recommend you creating another blank CSV file and write to that instead.
You’d want to use storeText
command with the Target being the element with the text you want to capture.
type | name=q | ${name}
sendKeys | name=q | ${KEY_ENTER}
storeText | ELEMENT_LOCATOR | ${result}
appendToCSV | blank_file.csv | ${name}, ${result}
Replace ELEMENT_LOCATOR
with the actual locator. To capture an element’s locator for a command you can press on the button next to the Target field.
Hope it helps!