How to iterate through yellow-highlighted rows and extract data

I’m working with a web table where certain rows are marked with a yellow circle. I want to iterate through only these yellow-highlighted rows, extract specific column data (like Time, Make & Model, License Plate, etc.), and then click the corresponding edit icon on the left of each row. What’s the best approach to achieve this in UiPath

@Sami_Rajput

use for each ui element or find children

you can use filter to filter on the specific attribute whihc is differing..mostly here style might differ or class can check the same and use

cheers

Hi @Sami_Rajput

use find children activity to get all rows in the web table, then use a for each loop to iterate. inside the loop, use get attribute or get ocr text to detect the yellow circle (like checking color or class attribute).
if it’s yellow, use find element or click to get specific column values and click the corresponding edit icon.

If you found helpful please mark as a solution. Thanks
Happy Automation with UiPath