WE have a scenario like View Jobs where it shows till which stage the process has run.
These view jobs represented similar to like a flow diagram with boxes with text written in it. Each box represents one flow. If the box outline highlighted as dark bold in color then that flow is completed any box that is greyed out we need to click and choose the restart option.
Here the question is can UiPath able to recognize the bold box or greyed out box?
Any option there to identify this ?
Use the Get Attribute activity to check properties like font-weight, color, or opacity. If selectors don’t work, try Computer Vision to detect UI elements visually. As a last option, use OCR or Image Matching to differentiate between bold and greyed-out boxes.
ideally these changes are done using class..so try to check the class difference between greyed and non greyed once and based on that build a logic to categorize
another possibility is direct css changes this might be little difficult but generally not the case with modern ui
There can be different ways to solve this problem but that will depend on its selector.
You will have to explore its selector using uiexplorer, check the properties/attributea selector is exposing and then take a particular approach.
I am sharing few threads on similar set of problems, have a read, this will help you understand what are all different ways and then based in your selector’s properties and attributes, you should be able to decide which is appropriate for your scenario.