Opening each listed URL from a data table

Hi
Welcome to uipath community
Hope this would help you resolve this
— let’s say your datatable variable obtained from scrapping is named as Extractedtable of type datatable
— now use a for each row activity and pass the above variable as input
— inside the loop use a open browser activity and mention the url property as row(1).ToString
— this will open the url through browser
— now let’s see how the above steps works
For each row loop will usually iterate through row in the datatable one by one
—So for one loop I.e., for one iteration one row will be taken and that is carried by the variable of for each row loop named row
—Now row(“columnname”) will give the value of the mentioned column in the row which is in iteration
Here we can either mention as row(“columnname”) or row(columnindex)
Like either row(“URL”) or row(1)
Where 1 represents the second column index and index usually starts from 0 for the first column

Hope this would help you
Kindly try this and let know for any queries or clarification

Cheers @7e9676c0d79e734200f2