How to click several buttons for each row

Hi there,

I am currently using foreachitem to click a button for each row. Now I need to click two more buttons per row so in total 3 buttons for each row. I realized that with foreachitem you can just assign one uielement and then several labels. What options do I have in order to click several buttons for each row?

Thank you very much!

how about 3 click activities in the for-each body, each targeting the same row but a different button in the row?

Hi @Android_HP

You can do like below:

  1. extract table data.

  2. loop through datatable.

  3. within loop, 3 click activities.

  4. using Uiexplorer, analyze selectors for all 3 elements in a row to identify what attributes are changing for each row. Mostly would be tablerow, Id, aaname for row reference etc.

  5. then remove static parts from selector and replace with dynamic values. Some attributes will remain static such as tableCol.

Hope this helps.