TripAdvisor changed pagination, how to adapt sitemap?

Describe the problem.
I am trying to scrape data from TripAdvisor, my sitemap scrapes al the restaurant-links from the pagination, goes to the specific restaurant and scrapes a bunch of data. I guess TripAdvisor changed the pagination and now I can't navigate anymore. I can't find a solution to adapt on this.

Does anyone know how to fix the pagination in my sitemap to have the same results as before?
PS. It does paginate to some pages and scrapes some data, but that's limited to a few pages.

Url: http://example.com
https://www.tripadvisor.nl/Restaurants-g188582-Eindhoven_North_Brabant_Province.html#EATERY_OVERVIEW_BOX

Sitemap:
Already solved

Hi your paginator looks OK but some of your selectors are too specific or dependent on location in the page. Try changing your restaurant-link selector to:
a[class^="restaurants-list-ListCell__restaurantName"]

This means, match any a tag that has a class that begins with "restaurants-list-ListCell__restaurantName". Your current selector is a.restaurants-list-ListCell__restaurantName--2aSdo which will only match classes with that specific 5-character code at the end.

This will fail if tripadvisor changes that 5-character code, which is probably what has happened. The symptom will be - your scraper paginates properly, but it fails to click on some or all the restaurant links.

ref: w3schools CSS Selector Reference

Hey Leemeng,

Thanks so much for helping me out!