Hi, I programmed a dynamic selector for the dlow to select every checkbox in a web page table, it worked just fine if the row count was below 4-5. But I was testing it with tables with more than 4-5 and the dynamic selector became crazy and began selecting at random from the table, and not in the right order... if there are 9 elements I want the dynamic selector to select in order from 0,1,2,3,4,5,6,7,8
For example:
If there are 4 elements it selects in order from 0,1,2,3. If I select the loop index to be 0 (first element from table):




If I select the 3 as the value in the loopindex (final element from the table):

Now here is the problem if there are more than 4-5 elements in the table:
There are 9 elements in this table. and the RPA jus keep guessing wich element is the first one (0):


It recognize the loop index 0 or the first element as the (6) element in the table... I dont know why this is happening.

If I test the index loop 2 (that should be the 3 element in the table) it recognize the 1 element of the table...

This is the action of selecting the checkbow that have worked with less than 4-5 (It is a select UI element in window):

I this it is selecting at random at this point.. Can someone help me?