Select next button in Table Extraction when is a list of numbers

Hello everyone!

I’m trying to navigate through multiple result pages extracting data but there is no next button. So need to click on button 2, 3, 4 and so on. Is there a way to automate this?

@Junkidrik

check the reference

1 Like

@Junkidrik Yes ,
1 :use the input dialog for how many page you want to extract Give variable name total page extract value in INT32 ,
2: open browser and check pass the url, try manual to go in second page in that page you will get the like this url=page2
3 : add the while loop and pass your variable and assign one more variable for count
if count <= total page extract
4 : use navigate browser and pass the the url +count variable it will take you 1 , 2 , 3 , 4 pages unitl equals too total page extract

2 Likes

Interesting. This could work. Thank you!