Hi everybody, I need to click on the anchor tag link which is in blue color text in the given images, i need to clikc on every links one by one no matter how the ui is whether is could be a table or any thing else i just need to click all the links. how to achive this ..can anybody help me to achive this ?
1 – Find Children (Recommended)
Use Find Children on the page or main container with filter <html tag='a' />. Loop through the output using For Each and click each UiElement. This works regardless of whether links are in a table, grid, or any other layout.
2 – Get Attribute (href) + Navigate To
Use Find Children to collect all anchor tags, then use Get Attribute to read the href value and store it in a list. Loop through the list and open each link using Navigate To. This avoids issues when the page reloads.
3 – Anchor / Wildcard Selector
Use a Click activity with a wildcard selector for <a> tags and loop using Element Exists + While or dynamic indexing. This is useful when the number of links is small and predictable, but less stable than the first two options.
The Table Extraction Wizard in UiPath Studio should help you extract the underlying links.
Since the table seems to be a standard HTML table, the Wizard should identify the columns and values automatically.
Like in your provided screenshots I can see Session ID, Order Number, Case ID etc. These info have nothing to do with your query. Please hide these info. It could invite undesired impact.