Get text - For loop

Hello -

I want to get a specific text in a table.

First table
image

Second table
image

and so forth so on…

The only selector that’s changing is the tableCol and tableRow.

How to get the text?

Thank you

Hi

Pls try with find children activity

Here you go on how to use it

Cheers @prititit

@prititit

Create two integer counter variables for both column and row and initialise it with 2 and 3 respectively. And then pass variables into the selector as below.

       tableCol={{ColCounter.ToString}}
       tableRow={{RowCounter.ToString}}

Keep Get Text activity in loop and increment ColCounter and RowCounter by 1.

        ColCounter = ColCounter+1
        RowCounter = RowCounter+1