I’m trying to scrape a site that uses numbered page tabs (1, 2, 3, etc) instead of normal next/previous pagination.
Page URLs are formatted like:
/oil-pressure-senders-and-sensors#1/oil-pressure-senders-and-sensors#2/oil-pressure-senders-and-sensors#3- etc (some categories have 15+ pages)
How the site works:
- Page numbers are shown as tabs (1, 2, 3, etc)
**Clicking a number updates the table on the same page - Opening
#2,#3, etc directly in a new tab does show the correct page
The problem:
- Using type "pagination** causes Web Scraper to scrape only the last page
- Page 1 and intermediate pages are skipped
What I’m trying to achieve:
- Scrape all pages, not just the first or last
- Do this via pagination, not by manually adding start URLs
Is this a known limitation with tab-style / hash-based pagination?