I have 100 rows in the web page and more than half of them are invisible on the screen, i have to scroll down and see it, this case how to make my selector to find those remaining half rows and perform click operation on the radio button

i have 100 rows in the web page and more than half of them are invisible on the screen, i have to scroll down and see it, this case how to make my selector to find those remaining half rows and perform click operation on the radio button of each row.

1 Like

Hi, if u r already know that the rows count value,
U can analyse the selector of the radio button for each row, u will find some attribute like rowNo in the selector which will be increasing for every row. So make use of that attribute to select all 100 rows

2 Likes

Thanks for sharing it ds.

But issue i am facing is, i am validating column values by IF condition on each row and condition is true then my selector will perform click on the radio button of the respective row. I have 100 rows in the page whereas only 20 rows is visible in my screen so rest of the rows are invisible.

Anyway, i identified the solution for it, I define count variable with value 1 and increase the count value while iterate through on each row and when count value reaches 15 rows ( for an instance), i perform DOWN key once through hotkeys activity which helps screen to move down row by row that works perfectly.

Thankyou …

1 Like