How to click all the rows from the data table?

Im trying to loop all and click all the rows in a table in traces portal.

this is my UiPath workflow logic

and im using

“” &
“” &
“”

this in the strict selector. Im getting the error while the click activity executes

Click ‘TDS232427QP10005000…(4)’: Could not find the user-interface (UI) element for this action.

Possible solutions:
• Ensure application is opened and the UI element is visible on the screen at execution time
• Edit the Target of the UI activity and use Validation to debug the issue.
• If needed, re-indicate the element as its properties might have changed
• Use “Check state” activity to check the application state before executing the action
• Increase the “Delay before” value to allow time to the application to render entirely and become responsive

Can anybody help me to fix this issue, I want to click all the rows in a table.

waiting for the help !!

Hi @Prabhakaran_Elango

You can Use Extract Table Data + Dynamic selector with idx
1.Extract Table Data - output as dt_table.
2.Use For Each Row - type argument as Datarow
3.Inside loop, use Click activity - Use partial selector, NOT strict
example -

Then Calculate index rowIndex = index + 1
and please set the click properties:
SimulateClick is True
Strict selector is Off
WaitForReady is interactive
DelayBefore is 300
TimeoutMS is '5000`

If Solution works for you please mark as Solution and let me know if you face any isssue.

Thanks & Happy Automations

You can use for each uielement activity and iterate through each element.

Then using curent element, you can click each element as required. You can filter this based on conditions too.

@Prabhakaran_Elango

using for each ui element makes sense for this use case rather than extract and loop

cheers