Opening CSV loop links in Chrome New Tab?

Hello

I am able to loop my list of 200 links from CSV, but they all are opening in the same tab. How can open each link in a new tab? Searched the forums but could not find a solution.

Thanks very much

selectWindow | TAB=OPEN | https://newwebsiteURL.com :slight_smile:

1 Like

Hello ulrich

Thanks for your reply.

For those who are looping links from a CSV file and want to open each link in a new tab, follow below code

{
"Name": "CSV Loop",
"CreationDate": "2019-3-22",
"Commands": [
{
  "Command": "csvRead",
  "Target": "goldenpie.csv",
  "Value": ""
},
{
  "Command": "open",
  "Target": "${!COL1}",
  "Value": ""
},
{
  "Command": "selectWindow",
  "Target": "tab=open",
  "Value": "${!COL1}"
}
]
}

Replace the word goldenpie.csv with your CSV filename.

1 Like