Hi,
Im new here
Im trying to load urls from excell file, then open one by one with “open-browser”.
the next step is to scrape specific data and save it in other excel file.
I searched for an answer but i didnt get it work.
thanks for any help !
Hi,
Im new here
Im trying to load urls from excell file, then open one by one with “open-browser”.
the next step is to scrape specific data and save it in other excel file.
I searched for an answer but i didnt get it work.
thanks for any help !
Hi
Welcome to uipath forum
Hope the below steps would help you resolve this
Use a Excel application scope and pass the file path as input
Inside the scope use a read range activity and get the output as dt
Then use a For each row activity and pass dt as input and inside the loop use a Open browser activity where pass the input as CurrentRow(“yourcolumnname”).ToString
Where mention the column name having url in it
This will open the web page and next inside to this open browser use DATA SCRAPPING
Have a view on this for using data scrapping and save the datatable as dt_extract
That data scrapping will have the data you want
Now use a Excel application scope and use write range activity and pass dt_extract as input and enable Add Headers property
Cheers @r.rooon