Problem with Pagination in Agritechnica

Hi, I am trying to scrape the following website, but I can't make webscraper to go through all 33 pages of results. Whatever I try, it only goes to the next page once, then stops. It doesn't go through all 33. Can someone explain what am I doing wrong? And how can I avoid making the same mistake in the future?

Thanks in advance.

Url: AGRITECHNICA 2025

Sitemap:
{"_id":"agritechnica","startUrl":["https://digital.agritechnica.com/newfront/marketplace/exhibitors?pageNumber=1&limit=60"],"selectors":[{"id":"nextpage","paginationType":"clickMore","parentSelectors":["_root","nextpage"],"selector":"svg[data-testid='NavigateNextIcon']","type":"SelectorPagination"}]}

Hi,

It looks like there are no selectors nested under the pagination. Please try this sitemap:

{"_id":"agritechnica","startUrl":["https://digital.agritechnica.com/newfront/marketplace/exhibitors?pageNumber=1&limit=60"],"selectors":[{"id":"nextpage","paginationType":"clickMore","parentSelectors":["_root","nextpage"],"selector":"svg[data-testid='NavigateNextIcon']","type":"SelectorPagination"},{"id":"link","linkType":"linkFromHref","multiple":true,"parentSelectors":["nextpage"],"selector":"a:has([data-styleid=\"product-card-title-name\"])","type":"SelectorLink"}]}

I had no idea that I need to put a selector under pagination for it to work. I was doing the 'scraping' part with a different script of mine, and needed web scrapper only for pagination. Just learned a new thing, thank you so much!