I’m working on a project where I need to extract data from a webpage as shown in the attached image. The webpage contains a list of titles, and additional details are revealed only after clicking on each title. The challenge is that the titles do not have URLs associated with them, so I cannot navigate directly to the detailed data using a link. Any advice, sample workflows, or recommendations would be greatly appreciated. Thank you!
Use a strict selector for clickable titles to click on them. You will get the idx attribute. The titles seem to be in the proper format, so the idx of each title will increase by one.
So, based on the index, you can keep clicking on titles and put the Click Activity in a while loop. Use a counter variable and initiate it with the starting index of the first clickable title. Then use the counter variable in the selector properties of Click.
Thank you for your detailed explanation! However, I’m relatively new to this approach, and I’m still a bit unsure about how to implement it practically.
Could you kindly share a sample .xaml file or a screenshot of how this can be set up in UiPath?
Explore dynamic selectors. You will get an idea.