Hello Everyone,
I am supposed to extract the table with multiple pages,
![]()
When I click Next it goes to next set as 11 12 13 14 etc
I am trying to click numbers in a loop and it’s not working
Kindly help on this to resolve.
Happy Automation
Hello Everyone,
I am supposed to extract the table with multiple pages,
![]()
When I click Next it goes to next set as 11 12 13 14 etc
I am trying to click numbers in a loop and it’s not working
Kindly help on this to resolve.
Happy Automation
If you are using Modern Activities Then click on next and indicate next button
Regards
Rajesh Rane
Hi @rajesh.rane
Thanks for your reply, When I click Next it’s not moving to page 2 and its moving to page 11 - 20
Hello @manikandan.murugan
Please refer below flow
but in click please indicate to next button thats it. and also change browser ui rest all things are same
Main.xaml (23.0 KB)
hi, @manikandan.murugan Use a While loop and keep clicking the visible page numbers one by one. When you reach the last number in the current set click “Next” to load the next set of numbers. Use a dynamic selector with a variable for the page number.. This way you’ll navigate through all pages even as the pagination changes.
You can collect the table from the first 10 pages and then collect the next 10 pages, and merge them to get the final table.
To achieve this:
Create an automation using a Do While loop to collect the data table from individual pages and store it until the Next button is disabled.
In each iteration, merge the collected data into the parent table.