Pagination - how to move to the next page?

Having an issue scraping the site below.
Looking to scrape information for each product but am having an issue with the pagination.
The scraper seems to load only first page of each category then move onto the next category.

Can anyone assist in helping with this one?

Thanks,

Url: https://carrefour.ro/supermarket/

Sitemap:
{"_id":"carrefour","startUrl":["https://carrefour.ro/supermarket/"],"selectors":[{"id":"categorie","type":"SelectorLink","parentSelectors":["_root"],"selector":"a.category-link","multiple":true,"delay":0},{"id":"produs","type":"SelectorElement","parentSelectors":["categorie","pagina"],"selector":"li.product","multiple":true,"delay":0},{"id":"denumire","type":"SelectorText","parentSelectors":["produs"],"selector":"a.product-name","multiple":false,"regex":"","delay":0},{"id":"pret","type":"SelectorText","parentSelectors":["produs"],"selector":"span.price","multiple":false,"regex":"","delay":0},{"id":"pagina","type":"SelectorLink","parentSelectors":["categorie"],"selector":"a.ng-binding.fa-chevron-right","multiple":false,"delay":0}]}

Hey, unfortunately, the Link selector won't work here, as there is not a valid link under the button, so in this case you should use the Element Click selector. I have adjusted the sitemap and it seems to be working now:

{"_id":"carrefour","startUrl":["https://carrefour.ro/supermarket/"],"selectors":[{"id":"categorie","type":"SelectorLink","parentSelectors":["_root"],"selector":"a.category-link","multiple":true,"delay":0},{"id":"produs","type":"SelectorElementClick","parentSelectors":["categorie"],"selector":"li.product","multiple":true,"delay":"2000","clickElementSelector":"a.ng-binding.fa-chevron-right","clickType":"clickMore","discardInitialElements":false,"clickElementUniquenessType":"uniqueText"},{"id":"denumire","type":"SelectorText","parentSelectors":["produs"],"selector":"a.product-name","multiple":false,"regex":"","delay":0},{"id":"pret","type":"SelectorText","parentSelectors":["produs"],"selector":"span.price","multiple":false,"regex":"","delay":0}]}