How to make a set !loop on UIV

how to make a set !loop on UIV without having to use the loop button to be able to read/write csv sequentially.

{
“Name”: “test login-1”,
“CreationDate”: “2023-1-22”,
“Commands”: [
{
“Command”: “store”,
“Target”: “medium”,
“Value”: “!replayspeed”,
“Description”: “”
},
{
“Command”: “store”,
“Target”: “10”,
“Value”: “loop”,
“Description”: “”
},
{
“Command”: “store”,
“Target”: “1”,
“Value”: “i”,
“Description”: “”
},
{
“Command”: “store”,
“Target”: “${i}”,
“Value”: “”,
“Description”: “”
},
{
“Command”: “while”,
“Target”: “${i} <= ${loop}”,
“Value”: “”,
“Description”: “”
},
{
“Command”: “csvRead”,
“Target”: “1.csv”,
“Value”: “”,
“Description”: “”
},
{
“Command”: “selectWindow”,
“Target”: “tab=0”,
“Value”: “”,
“Description”: “”
},
{
“Command”: “editContent”,
“Target”: “id=textbox”,
“Value”: “:red_circle: LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}”,
“Description”: “”
},
{
“Command”: “sendKeys”,
“Target”: “id=textbox”,
“Value”: “:red_circle: LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}”,
“Description”: “”
},
{
“Command”: “executeScript_Sandbox”,
“Target”: “return Number(${!csvReadLineNumber})+2”,
“Value”: “!csvReadLineNumber”,
“Description”: “Increase by one to read the next line.”
},
{
“Command”: “selectWindow”,
“Target”: “tab=1”,
“Value”: “”,
“Description”: “”
},
{
“Command”: “editContent”,
“Target”: “id=textbox”,
“Value”: “:red_circle: LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}”,
“Description”: “”
},
{
“Command”: “sendKeys”,
“Target”: “id=textbox”,
“Value”: “:red_circle: LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}”,
“Description”: “”
},
{
“Command”: “end”,
“Target”: “”,
“Value”: “”,
“Description”: “”
}
]
}

This will do all the CSV Rows.

{
  "Name": "1test login-1",
  "CreationDate": "2023-1-23",
  "Commands": [
    {
      "Command": "store",
      "Target": "medium",
      "Value": "!replayspeed",
      "Description": ""
    },
    {
      "Command": "csvRead",
      "Target": "1.csv",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "store",
      "Target": "${!CSVREADMAXROW}",
      "Value": "Rows",
      "Description": ""
    },
    {
      "Command": "times",
      "Target": "${Rows}",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "store",
      "Target": "${!times}",
      "Value": "!CSVREADLINENUMBER",
      "Description": ""
    },
    {
      "Command": "csvRead",
      "Target": "1.csv",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "selectWindow",
      "Target": "tab=0",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "editContent",
      "Target": "id=textbox",
      "Value": ":red_circle: LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "sendKeys",
      "Target": "id=textbox",
      "Value": ":red_circle: LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "selectWindow",
      "Target": "tab=1",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "editContent",
      "Target": "id=textbox",
      "Value": ":red_circle: LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "sendKeys",
      "Target": "id=textbox",
      "Value": ":red_circle: LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "end",
      "Target": "",
      "Value": "",
      "Description": ""
    }
  ]
}

I mean scripts like imacros,
tab=0 for csv line 1 tab=1 for csv line 2 and so on.
an example of the imacros script that I often use

SET !EXTRACT_TEST_POPUP NO
set !timeout_step 2
SET !ERRORIGNORE YES
SET !datasource akun.csv
set !replayspeed medium

TAB T=1
SET !LOOP 1
TAG POS=2 TYPE=DIV ATTR=TXT:Close
wait seconds=0.2
EVENTS TYPE=KEYPRESS SELECTOR=“HTML>BODY>YTCP-UPLOADS-DIALOG>TP-YT-PAPER-DIALOG>DIV>YTCP-ANIMATABLE>YTCP-VE>YTCP-VIDEO-METADATA-EDITOR>DIV>YTCP-VIDEO-METADATA-EDITOR-BASICS>DIV>YTCP-SOCIAL-SUGGESTIONS-TEXTBOX>YTCP-FORM-INPUT-CONTAINER>DIV>DIV:nth-of-type(2)>DIV>YTCP-SOCIAL-SUGGESTION-INPUT>DIV” CHARS=“{{!col4}} {{!col5}} | {{!col6}} {{!col9}} {{!col10}}”
TAB T=2
SET !LOOP 2
TAG POS=2 TYPE=DIV ATTR=TXT:Close
wait seconds=0.2
EVENTS TYPE=KEYPRESS SELECTOR=“HTML>BODY>YTCP-UPLOADS-DIALOG>TP-YT-PAPER-DIALOG>DIV>YTCP-ANIMATABLE>YTCP-VE>YTCP-VIDEO-METADATA-EDITOR>DIV>YTCP-VIDEO-METADATA-EDITOR-BASICS>DIV>YTCP-SOCIAL-SUGGESTIONS-TEXTBOX>YTCP-FORM-INPUT-CONTAINER>DIV>DIV:nth-of-type(2)>DIV>YTCP-SOCIAL-SUGGESTION-INPUT>DIV” CHARS=“{{!col4}} {{!col5}} | {{!col6}} {{!col9}} {{!col10}}”
TAB T=3
SET !LOOP 3
TAG POS=2 TYPE=DIV ATTR=TXT:Close
wait seconds=0.2
EVENTS TYPE=KEYPRESS SELECTOR=“HTML>BODY>YTCP-UPLOADS-DIALOG>TP-YT-PAPER-DIALOG>DIV>YTCP-ANIMATABLE>YTCP-VE>YTCP-VIDEO-METADATA-EDITOR>DIV>YTCP-VIDEO-METADATA-EDITOR-BASICS>DIV>YTCP-SOCIAL-SUGGESTIONS-TEXTBOX>YTCP-FORM-INPUT-CONTAINER>DIV>DIV:nth-of-type(2)>DIV>YTCP-SOCIAL-SUGGESTION-INPUT>DIV” CHARS=“{{!col4}} {{!col5}} | {{!col6}} {{!col9}} {{!col10}}”

To do a loop I use Times command it’s easy to use and working like a charm

Read here info

https://ui.vision/rpa/docs/selenium-ide/times

Tab 1 → CSV Row 1
Tab 2 → CSV Row 2
Tab 3 → CSV Row 3

But do remember SelectWindow can bug randomly

{
  "Name": "1test login-1",
  "CreationDate": "2023-1-24",
  "Commands": [
    {
      "Command": "store",
      "Target": "medium",
      "Value": "!replayspeed",
      "Description": ""
    },
    {
      "Command": "times",
      "Target": "10",
      "Value": "",
      "Description": "Number of CSV Rows"
    },
    {
      "Command": "store",
      "Target": "${!times}",
      "Value": "!CSVREADLINENUMBER",
      "Description": ""
    },
    {
      "Command": "csvRead",
      "Target": "1.csv",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "executeScript",
      "Target": "return Number(${!times}) -1;",
      "Value": "TabNumber",
      "Description": ""
    },
    {
      "Command": "selectWindow",
      "Target": "tab=${TabNumber}",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "editContent",
      "Target": "id=textbox",
      "Value": ":red_circle: LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "sendKeys",
      "Target": "id=textbox",
      "Value": ":red_circle: LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "end",
      "Target": "",
      "Value": "",
      "Description": ""
    }
  ]
}
1 Like
  • [error]

Line 5: Error in executeScript code: Refused to evaluate a string as JavaScript because ‘unsafe-eval’ is not an allowed source of script in the following Content Security Policy directive: “script-src ‘report-sample’ ‘nonce-u89TumvUr0c3hEX64WfUbg’ ‘unsafe-inline’ ‘strict-dynamic’ https: http:”.

try executescript sandbox command

code is fine.
It could be your browser.

 {
      "Command": "times",
      "Target": "10",
      "Value": "",
      "Description": "Number of CSV Rows"
    },
    {
      "Command": "executeScript",
      "Target": "return Number(${!times}) -1;",
      "Value": "TabNumber",
      "Description": ""
    },
    {
      "Command": "prompt",
      "Target": "tab=${TabNumber}",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "end",
      "Target": "",
      "Value": "",
      "Description": ""
    }
{
  "Name": "test login-1",
  "CreationDate": "2023-1-24",
  "Commands": [
    {
      "Command": "store",
      "Target": "medium",
      "Value": "!replayspeed",
      "Description": ""
    },
    {
      "Command": "times",
      "Target": "10",
      "Value": "",
      "Description": "Number of CSV Rows"
    },
    {
      "Command": "store",
      "Target": "${!times}",
      "Value": "!CSVREADLINENUMBER",
      "Description": ""
    },
    {
      "Command": "csvRead",
      "Target": "1.csv",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "executeScript",
      "Target": "return Number(${!times}) -1;",
      "Value": "TabNumber",
      "Description": ""
    },
    {
      "Command": "prompt",
      "Target": "tab=${TabNumber}",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "editContent",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "sendKeys",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "selectWindow",
      "Target": "tab=${TabNumber}",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "editContent",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "sendKeys",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "end",
      "Target": "",
      "Value": "",
      "Description": ""
    }
  ]
}

still error, UIV is not as easy as iMacros in making scripts, or even recording. i am new with UIV.

This script can be run, but it takes a long time, because each tab keeps repeating the loop from the beginning.

{
  "Name": "test login-3",
  "CreationDate": "2023-1-24",
  "Commands": [
    {
      "Command": "store",
      "Target": "true",
      "Value": "!errorignore",
      "Description": ""
    },
    {
      "Command": "store",
      "Target": "3",
      "Value": "!TIMEOUT_WAIT",
      "Description": ""
    },
    {
      "Command": "store",
      "Target": "medium",
      "Value": "!replayspeed",
      "Description": ""
    },
    {
      "Command": "csvRead",
      "Target": "1.csv",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "times",
      "Target": "1",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "store",
      "Target": "${!times}",
      "Value": "!CSVREADLINENUMBER",
      "Description": ""
    },
    {
      "Command": "csvRead",
      "Target": "1.csv",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "selectWindow",
      "Target": "tab=0",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "editContent",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "sendKeys",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "end",
      "Target": "",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "times",
      "Target": "2",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "store",
      "Target": "${!times}",
      "Value": "!CSVREADLINENUMBER",
      "Description": ""
    },
    {
      "Command": "csvRead",
      "Target": "1.csv",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "selectWindow",
      "Target": "tab=1",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "editContent",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "sendKeys",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "end",
      "Target": "",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "times",
      "Target": "3",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "store",
      "Target": "${!times}",
      "Value": "!csvReadLineNumber",
      "Description": ""
    },
    {
      "Command": "csvRead",
      "Target": "1.csv",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "selectWindow",
      "Target": "tab=2",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "editContent",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "sendKeys",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "end",
      "Target": "",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "times",
      "Target": "4",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "store",
      "Target": "${!times}",
      "Value": "!csvReadLineNumber",
      "Description": ""
    },
    {
      "Command": "csvRead",
      "Target": "1.csv",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "selectWindow",
      "Target": "tab=3",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "editContent",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "sendKeys",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "end",
      "Target": "",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "times",
      "Target": "5",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "store",
      "Target": "${!times}",
      "Value": "!csvReadLineNumber",
      "Description": ""
    },
    {
      "Command": "csvRead",
      "Target": "1.csv",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "selectWindow",
      "Target": "tab=4",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "editContent",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "sendKeys",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "end",
      "Target": "",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "times",
      "Target": "6",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "store",
      "Target": "${!times}",
      "Value": "!csvReadLineNumber",
      "Description": ""
    },
    {
      "Command": "csvRead",
      "Target": "1.csv",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "selectWindow",
      "Target": "tab=5",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "editContent",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "sendKeys",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "end",
      "Target": "",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "times",
      "Target": "7",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "store",
      "Target": "${!times}",
      "Value": "!csvReadLineNumber",
      "Description": ""
    },
    {
      "Command": "csvRead",
      "Target": "1.csv",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "selectWindow",
      "Target": "tab=6",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "editContent",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "sendKeys",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "end",
      "Target": "",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "times",
      "Target": "8",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "store",
      "Target": "${!times}",
      "Value": "!csvReadLineNumber",
      "Description": ""
    },
    {
      "Command": "csvRead",
      "Target": "1.csv",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "selectWindow",
      "Target": "tab=7",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "editContent",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "sendKeys",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "end",
      "Target": "",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "times",
      "Target": "9",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "store",
      "Target": "${!times}",
      "Value": "!csvReadLineNumber",
      "Description": ""
    },
    {
      "Command": "csvRead",
      "Target": "1.csv",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "selectWindow",
      "Target": "tab=8",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "editContent",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "sendKeys",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "end",
      "Target": "",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "times",
      "Target": "10",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "store",
      "Target": "${!times}",
      "Value": "!csvReadLineNumber",
      "Description": ""
    },
    {
      "Command": "csvRead",
      "Target": "1.csv",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "selectWindow",
      "Target": "tab=9",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "editContent",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "sendKeys",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "end",
      "Target": "",
      "Value": "",
      "Description": ""
    }
  ]
}

delete these 3 lines.

{
  "Name": "1test login-1",
  "CreationDate": "2023-1-24",
  "Commands": [
    {
      "Command": "store",
      "Target": "medium",
      "Value": "!replayspeed",
      "Description": ""
    },
    {
      "Command": "times",
      "Target": "10",
      "Value": "",
      "Description": "Number of CSV Rows"
    },
    {
      "Command": "store",
      "Target": "${!times}",
      "Value": "!CSVREADLINENUMBER",
      "Description": ""
    },
    {
      "Command": "csvRead",
      "Target": "1.csv",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "executeScript_Sandbox",
      "Target": "return Number(${!times}) -1;",
      "Value": "TabNumber",
      "Description": ""
    },
    {
      "Command": "selectWindow",
      "Target": "tab=${TabNumber}",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "editContent",
      "Target": "id=textbox",
      "Value": ":red_circle: LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "sendKeys",
      "Target": "id=textbox",
      "Value": ":red_circle: LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "end",
      "Target": "",
      "Value": "",
      "Description": ""
    }
  ]
}

can you record video of this?


like this
tab1 = line1

tab 2 = line1
= line2

tab 3 = line1
= line2
= line3 etc.

indirect
tab1 = line1
tab2 = line2 etc.

video of code I shared

changed script like your iMacros script

{
  "Name": "1test login-1",
  "CreationDate": "2023-1-24",
  "Commands": [
    {
      "Command": "store",
      "Target": "true",
      "Value": "!errorignore",
      "Description": ""
    },
    {
      "Command": "store",
      "Target": "3",
      "Value": "!TIMEOUT_WAIT",
      "Description": ""
    },
    {
      "Command": "store",
      "Target": "medium",
      "Value": "!replayspeed",
      "Description": ""
    },
    {
      "Command": "store",
      "Target": "1",
      "Value": "!CSVREADLINENUMBER",
      "Description": ""
    },
    {
      "Command": "csvRead",
      "Target": "1.csv",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "selectWindow",
      "Target": "tab=0",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "editContent",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "sendKeys",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "store",
      "Target": "2",
      "Value": "!CSVREADLINENUMBER",
      "Description": ""
    },
    {
      "Command": "csvRead",
      "Target": "1.csv",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "selectWindow",
      "Target": "tab=1",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "editContent",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "sendKeys",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "store",
      "Target": "3",
      "Value": "!csvReadLineNumber",
      "Description": ""
    },
    {
      "Command": "csvRead",
      "Target": "1.csv",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "selectWindow",
      "Target": "tab=2",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "editContent",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "sendKeys",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "store",
      "Target": "4",
      "Value": "!csvReadLineNumber",
      "Description": ""
    },
    {
      "Command": "csvRead",
      "Target": "1.csv",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "selectWindow",
      "Target": "tab=3",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "editContent",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "sendKeys",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "store",
      "Target": "5",
      "Value": "!csvReadLineNumber",
      "Description": ""
    },
    {
      "Command": "csvRead",
      "Target": "1.csv",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "selectWindow",
      "Target": "tab=4",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "editContent",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "sendKeys",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "store",
      "Target": "6",
      "Value": "!csvReadLineNumber",
      "Description": ""
    },
    {
      "Command": "csvRead",
      "Target": "1.csv",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "selectWindow",
      "Target": "tab=5",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "editContent",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "sendKeys",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "store",
      "Target": "7",
      "Value": "!csvReadLineNumber",
      "Description": ""
    },
    {
      "Command": "csvRead",
      "Target": "1.csv",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "selectWindow",
      "Target": "tab=6",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "editContent",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "sendKeys",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "store",
      "Target": "8",
      "Value": "!csvReadLineNumber",
      "Description": ""
    },
    {
      "Command": "csvRead",
      "Target": "1.csv",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "selectWindow",
      "Target": "tab=7",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "editContent",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "sendKeys",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "store",
      "Target": "9",
      "Value": "!csvReadLineNumber",
      "Description": ""
    },
    {
      "Command": "csvRead",
      "Target": "1.csv",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "selectWindow",
      "Target": "tab=8",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "editContent",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "sendKeys",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "store",
      "Target": "10",
      "Value": "!csvReadLineNumber",
      "Description": ""
    },
    {
      "Command": "csvRead",
      "Target": "1.csv",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "selectWindow",
      "Target": "tab=9",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "editContent",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    },
    {
      "Command": "sendKeys",
      "Target": "id=textbox",
      "Value": "🔴 LIVE: ${!col3} vs. ${!col4} | ${!col8} ${!col9} ${!col10}",
      "Description": ""
    }
  ]
}
1 Like

I just want to let you know, that you guys are GREAT !!! I very much appreciate the quick responding. :slight_smile: