I’m working with UiPath Computer Vision inside a CV Screen Scope, where I can extract table data using CV Extract Table.
I have a string variable, for example:
targetText = "832477"
I want to click a specific row in the CV table where one of the cells matches this variable.
Here’s what I tried so far:
Extracted the table using CV Extract Table into a variable “EncounterValue”.
Tried looping through the rows and checking row("EncounterValue").ToString = descriptorString
But I’m not sure how to pass that row element to CV Click so it clicks the exact cell or row.
Question:
Once I have the match, how can I pass it directly to CV Click without hardcoding the descriptor?
Any example workflow or snippet would be greatly appreciated!
Hi Sonali,
Thanks a lot for your detailed explanation and example. I tried your approach and it worked perfectly – I can now match the row based on targetText and click it dynamically without hardcoding the descriptor. Appreciate your help!