I have a request, if anyone can help me out on how to proceed.
I am using a virtual desktop, where I can only use CV,
I want to basically run through a loop for each row inside a table. For each iteration of the loop, I want to click on the row itself, and then click on a new window that says browse notes, and save those.
Setting up the clicking procedure is simple, my issue is how I can use CV to run the loop for the table in the first place.
Above is a screenshot of the table, with personal data obviously blurred out. How can I run a sequence for each loop?
Use the CV Screen Scope Activity
Start by placing your automation within a “CV Screen Scope” activity to define the area where UiPath will perform computer vision activities.
Use the CV Extract Table Activity**:
Within the “CV Screen Scope,” use the “CV Extract Table” activity to extract the table data. This activity outputs a DataTable.
For Each Row Activity**:
Once you have extracted the table, use the “For Each Row” activity to loop through each row of the DataTable.
Use CV Element Exists and CV Click Activities**:
Inside the loop, use a combination of “CV Element Exists” and “CV Click” activities. You’ll need to identify the row using selectors that match the specific row you are iterating over.
You might need to create a dynamic selector that changes with each iteration. The selector could be based on a unique value in each row (e.g., an ID or name in a column).
Click on Each Row
Inside the loop, use the “CV Click” activity to click on the identified element of the current row.
If you pass the output DataTable to a For Each Row activity, the loop will iterate through each row one by one, allowing each CV Click action to click on each name in the table.
How can I get it to click on the name specifically, I have extracted the data, but am unsure on how to configure it to click on the specific name of the current row.
se a combination of “CV Element Exists” and “CV Click” activities. You’ll need to identify the row using selectors that match the specific row you are iterating over.
You might need to create a dynamic selector that changes with each iteration. The selector could be based on a unique value in each row (e.g., an ID or name in a column).
Indicate on Screen: When you add an activity like Click or Type Into, you can directly indicate the UI element on the screen. UiPath will generate a basic selector automatically.