Pagination issue

I am trying to pull the pagination

The full element is

<a class="sg-pagination-v2-page-actions sg-pagination-v2-next " disabled="false" href="/agencies/digital-strategy?agency_size=50+-+249&amp;page=59" data-page="59" aria-label="Go to Next Page" title="Go to Next Page">
                <span>Next</span>
            </a>

I’d tried just using the Bradeen selector but that seem to fail

I’ve tried also using the following

a.sg-pagination-v2-page-actions.sg-pagination-v2-next[aria-label="Go to Next Page"]

scraper works fine but the pagination has me stumped

Could you share the page URL?

https://clutch.co/agencies/digital-strategy?agency_size=50+-+249&page=1

Looks like Bardeen has already created a scraper template for this and they use the following selector for pagination:
div[class*='pagination'] a[class*='next']

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.