Pagination is not working Properly

I am trying to scrape data from this site with pagination rule but its not working properly. Scraper scrapes data from only first page. Please check it and help me. Thanks

Url: https://www.mobileworldcongress.com/exhibition/2018-exhibitors/

Sitemap:
{"_id":"companies","startUrl":["https://www.mobileworldcongress.com/exhibition/2018-exhibitors/"],"selectors":[{"id":"links","type":"SelectorLink","selector":"a.listing-item","parentSelectors":["_root"],"multiple":true,"delay":0},{"id":"name","type":"SelectorText","selector":"h2","parentSelectors":["links","pagination"],"multiple":false,"regex":"","delay":0},{"id":"phone","type":"SelectorText","selector":"p:nth-of-type(7)","parentSelectors":["links","pagination"],"multiple":false,"regex":"","delay":0},{"id":"email","type":"SelectorLink","selector":"a.email-link","parentSelectors":["links","pagination"],"multiple":false,"delay":0},{"id":"website","type":"SelectorLink","selector":"a.web-site-link","parentSelectors":["links","pagination"],"multiple":false,"delay":0},{"id":"pagination","type":"SelectorLink","selector":"a.page-numbers","parentSelectors":["_root"],"multiple":true,"delay":0}]}

this websites you don't need pagination. Just fix your metadata url:https://www.mobileworldcongress.com/exhibition/2018-exhibitors/page/[1-67]

this will scrape all the pages.

{"_id":"companies","startUrl":["https://www.mobileworldcongress.com/exhibition/2018-exhibitors/page/[1-67]"],"selectors":[{"id":"links","type":"SelectorLink","selector":"a.listing-item","parentSelectors":["_root"],"multiple":true,"delay":0},{"id":"name","type":"SelectorText","selector":"h2","parentSelectors":["links"],"multiple":false,"regex":"","delay":0},{"id":"phone","type":"SelectorText","selector":"p:nth-of-type(7)","parentSelectors":["links"],"multiple":false,"regex":"","delay":0},{"id":"email","type":"SelectorLink","selector":"a.email-link","parentSelectors":["links"],"multiple":false,"delay":0},{"id":"website","type":"SelectorLink","selector":"a.web-site-link","parentSelectors":["links"],"multiple":false,"delay":0}]}

Pagination is only for those sites either expand on click, or change what you are viewing without leaving/reloading the page.

If it loads another page you want to do what Dereck said and edit the "Start URL"

Hello. I am having the same issue.
{"_id":"ambiente012021","startUrl":["Resultados de búsqueda | Gobierno del Perú a","multiple":false,"regex":"","delay":0},{"id":"fecha","type":"SelectorText","parentSelectors":["normas"],"selector":"time","multiple":false,"regex":"","delay":0},{"id":"descripcion","type":"SelectorText","parentSelectors":["normas"],"selector":"p","multiple":false,"regex":"","delay":0},{"id":"paginacion","type":"SelectorLink","parentSelectors":["_root","paginacion"],"selector":".pagination li:nth-of-type(n+2) a","multiple":true,"delay":0}]}

When scrapping it only stays on the first page.