With Every Cell in Row
From UBot Studio
This command is an Advanced Table command. This command loops through every cell in a row.
Table: Table with content being used in the script.
Row: Row the script will be looping through.
Variable: Variable each table cell in the row will be set to. The variable is then inserted into other commands inside the With Every Cell in Row command.
Example
navigate("http://www.w3schools.com/html/html_tables.asp","Wait") wait(8) scrape table(<innertext="First Name">,&my table) with every cell in row(&my table,0,#mytablerows) { navigate("http://www.ubotstudio.com/playground/simple-form","Wait") type text(<username field>,#mytablerows,"Standard") }
Running the command will scrape a table, navigate to the specified url, and fill the specified field with the first table cell item in the specified row.
The script within the With Every Cell in Row command will repeat for each table cell item on the table row, and stop once it reaches the end of the row.