I am using for each ui element for every row in data grid, but when I delete any row a new row comes in current ui element sets, that is ignored by bot.
How to include that row also before moving to next page.
Thanks in advance
I am using for each ui element for every row in data grid, but when I delete any row a new row comes in current ui element sets, that is ignored by bot.
How to include that row also before moving to next page.
Thanks in advance
Hi, you can implement an index while iterating through each row. For example, you can use an integer variable to represent the row index and increment this variable as you move through each row. If any row is deleted, you can decrease the variable to maintain the correct index.
You need to use this variable within the selector for the row.
Thanks for your response, I will try this logic and let you know.