Move between pages

Suppose I have a webpage that has 8 pages in it. And no forward or backward button or any arrow marks to move front or back, and I want to navigate page wise and stop at the last page, how we can achieve this.

You can still use the data scraping wizard, but don’t specify a “Next” button. Instead, you’ll need to create a While loop that clicks navigates or clicks iterably. It depends on how you’re navigating pages. If the url is all that changes, you can use Navigate To until a page with no data or error appears. If you have to click on numeric next buttons, you can use an index and use that to create a dynamic selector.

1 Like