Why isn't pagination working here?

Hi,

I'm trying to scrape this site using the below sitemap but pagination isn't working for some reason, have tried multiple different selectors and pagination types but none seem to page through properly.

Any advice is very welcome...

{"_id":"collectingCarsSingle","startUrl":["https://collectingcars.com/buy/?refinementList%5Bstage%5D%5B0%5D=sold&refinementList%5BlotType%5D%5B0%5D=car&page=1"],"selectors":[{"id":"page","paginationType":"auto","parentSelectors":["_root","page"],"selector":"li.ais-Pagination-item--nextPage","type":"SelectorPagination"},{"id":"wrapper","multiple":true,"parentSelectors":["page"],"selector":"div.listing__item","type":"SelectorElement"},{"id":"price","multiple":false,"parentSelectors":["wrapper"],"regex":"","selector":"div.listing__statPrice","type":"SelectorText"},{"id":"name","multiple":false,"parentSelectors":["wrapper"],"regex":"","selector":".listing__title a","type":"SelectorText"},{"id":"date","multiple":false,"parentSelectors":["wrapper"],"regex":"","selector":"div.listing__statTime","type":"SelectorText"},{"id":"desc","multiple":false,"parentSelectors":["wrapper"],"regex":"","selector":".listing__description p","type":"SelectorText"},{"id":"location","multiple":false,"parentSelectors":["wrapper"],"regex":"","selector":".listing__prop > span","type":"SelectorText"},{"id":"rhd","multiple":false,"parentSelectors":["wrapper"],"regex":"","selector":"span.listing__prop:nth-of-type(1)","type":"SelectorText"},{"id":"image","multiple":false,"parentSelectors":["wrapper"],"selector":"a img","type":"SelectorImage"},{"id":"link","multiple":false,"parentSelectors":["wrapper"],"selector":".listing__image a","type":"SelectorLink"},{"id":"mileage","multiple":false,"parentSelectors":["link"],"regex":"","selector":"div.overviewInner__details__list:nth-of-type(1) li:nth-of-type(1)","type":"SelectorText"},{"id":"transmission","multiple":false,"parentSelectors":["link"],"regex":"","selector":"div.overviewInner__details__list:nth-of-type(1) li:nth-of-type(2)","type":"SelectorText"},{"id":"colour","multiple":false,"parentSelectors":["link"],"regex":"","selector":".overviewList li:nth-of-type(4)","type":"SelectorText"},{"id":"engine","multiple":false,"parentSelectors":["link"],"regex":"","selector":".overviewList li:nth-of-type(6)","type":"SelectorText"},{"id":"chassis","multiple":false,"parentSelectors":["link"],"regex":"","selector":".overviewList li:nth-of-type(7)","type":"SelectorText"},{"id":"sold","multiple":false,"parentSelectors":["link"],"regex":"","selector":"dd p","type":"SelectorText"},{"id":"imageBig","multiple":false,"parentSelectors":["link"],"selector":"img[srcset]","type":"SelectorImage"},{"id":"country","multiple":false,"parentSelectors":["link"],"selector":".overviewList__icon--flag img","type":"SelectorImage"}]}

Thanks in advance!

You don't really need a paginator here because the URL changes with each page. So you can use the "range url with increment" method listed under Specify multiple urls with ranges