How can we do Data scrapping on the Ui which we get from Find Children activity?
@ppr @Yoichi @Palaniyappan
@agathiyanv
You can looping through all children element using for each and get text activity to scrape data.in which get text activity we have input element property where we can pass children ui element.
How can I use get text for tables?
just share with us more details, so we can help with an individual approach
I am having this type of table in dynamic location. So, using find children activity I get all the elements, but how can I do data scrapping on this Table.
@agathiyanv you can do data scraping and scrape the table in one go.you don’t need find children activity.
I agree. You may use this link as a guide on how to do it: https://www.analyticsvidhya.com/blog/2021/02/web-scraping-using-rpa-tool-uipath/
You can also use Table Extraction.
If it is Single table means I can do data scrapping. But it is sub table, that is having multiple pages
Eg The structure:
MAIN TABLE ROW 1
–>Sub Table 1
MAIN TABLE ROW 2
–>Sub Table 2
MAIN TABLE ROW 3
–>Sub Table 3
For this How you can do data scrapping
Will it work? If the table having multiple pages??
Hi,
Do you mean it’s necessary to click next page button or need to scroll down?
If former, we need to use FindChildren in every page.
If latter, can you try to scroll down to the bottom of the page in order to loading whole page, then use FindChildren
Regards,
Actually, what I was trying to say is, each child table in that UI have next button. So, in that case, get text activity will work or not??
Because I am using find children activity on the table which span over multiple pages.