Hello,
I am developing a solution in UiPath where I need to handle approximately 500 entries (essentially a list of suppliers). Each supplier corresponds to a checkbox in the application.
From my input DataTable, I am retrieving the value with:
CurrentRow.Item("Supplier").ToString
What I need is to instruct the bot to select the checkbox that matches this specific supplier name during each iteration.
In another post I saw that it is possible to attach the value to be selected inside the UI element’s aaname attribute. Is this approach valid, and if so, how can it be implemented properly?
- Is there a recommended way to dynamically match the value from the DataTable with the checkbox’s label?
- Should I rely on a dynamic selector with the supplier name, or is there a better approach to ensure reliability when dealing with so many checkboxes?
Any suggestions or examples would be greatly appreciated.
(This is how my list of checkboxes looks like)
Thank you!
