uipathuipath-studio

Table Extraction in UIPath if table has images


I am trying to extract the Table which has the following format

enter image description here

When I want to extract i should have either put some character on place up icon or i dont want that either the case is fine..

But UIPath brings this way.. 78,59,237806 all as one text which is misleading.. How to resolve this issue..

Thanks


Solution

  • Take a look at the Find Children activity. You can specify an item via selector (the table) and use Find Children to return a collection of type UiElement.

    So set the filter to extract the "<webctrl tag='tr' />" which will effectively give you a collection of the rows.

    Use a For Each to iterate through each UiElement you got from the first Find Children activity, and use that element to run another Find Children. In this case, set the filter to extract the elements with a class of "mid-wrap". This gives you a collection of the elements in the row which match that requirement, and this will exclude the data-up value, since that's a different class.

    You can then loop over this collection to get the innertext attribute, which will give you the actual values you're looking for each cell in the row. Use something like Add Data Row to add the values to a datatable, and let the For Each run over the next row in the collection.