Any suggestions on how to scrape text from a web page where a portion of the text is scrolling/streaming continuously? Think of an online broker streaming time and sales data.
Ideally it would be every change, which can be pretty quick, but I realize that makes it more difficult. I realize I could put a scraping sequence in a loop. I suppose I should try that to see what latency I get
Hi @mikea59,
Can you show us a sample screenshot of the data which you try to scrape the text from the webpage? It would be helpful to suggest the best solution.
Regards,
@90s_Developer
You can achieve this using Data Scraping method which is available in the studio.
Check the above link which shows you have to scrape the data.
Regards,
@90s_Developer
Hi
Welcome to uipath forum
Hope the below steps would help you resolve this
-
Use a Build Datatable activity and create a column structure as same as you will get when being data scrapped from that application and get the output as dt
-
Now use a clear datatable activity and pass dt as input and get the output as dt
-
Then use a DO WHILE activity
-
Inside the loop use a DATA EXTRACTION Activity and get the output as ExtractedTable
-
Inside the same loop use a MERGE DATATABLE activity and pass ExtractedTable as Source property and dt as destination property
This dt will now have all the data you need
Cheers @mikea59