Pagination problems again

Hi,
I want to scrape this directory:

Sitemap:
{id:"sitemap code"}
{"_id":"reviewerses","startUrl":["https://www.amazon.es/hz/leaderboard/top-reviewers/ref=cm_cr_tr_link_1?page=1"],"selectors":[{"id":"directory","type":"SelectorLink","parentSelectors":["_root","pagination"],"selector":"td a.a-link-normal:nth-of-type(1)","multiple":true,"delay":0},{"id":"linke","type":"SelectorLink","parentSelectors":["directory"],"selector":"span.a-size-base a.a-link-normal","multiple":false,"delay":0},{"id":"description","type":"SelectorText","parentSelectors":["linke"],"selector":"span.a-size-base.a-color-base","multiple":false,"regex":"","delay":0},{"id":"Twitter","type":"SelectorLink","parentSelectors":["directory"],"selector":"div.a-fixed-right-grid-inner div:nth-of-type(2) a","multiple":false,"delay":0},{"id":"Instagram","type":"SelectorText","parentSelectors":["directory"],"selector":"div.a-fixed-right-grid-inner div:nth-of-type(4) img.social-link-image","multiple":false,"regex":"","delay":0},{"id":"nombre","type":"SelectorText","parentSelectors":["directory"],"selector":"div.a-row div.a-row.a-spacing-none","multiple":false,"regex":"","delay":0},{"id":"Youtube","type":"SelectorLink","parentSelectors":["directory"],"selector":"div:nth-of-type(5) div.a-fixed-right-grid-col a","multiple":false,"delay":0},{"id":"website","type":"SelectorLink","parentSelectors":["directory"],"selector":"div.a-fixed-right-grid-inner a.a-link-normal","multiple":false,"delay":0},{"id":"pagination","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"tr:nth-of-type(3) a.a-link-normal:nth-of-type(1)","multiple":true,"delay":"2000","clickElementSelector":"th.a-color-base.a-align-bottom li.a-last a","clickType":"clickMore","discardInitialElements":true,"clickElementUniquenessType":"uniqueHTML"}]}

This should fix your problem. Make sure to set page load delay to around 5000

You can follow my example to add more selectors to the final page.

{"_id":"reviewerses","startUrl":["https://www.amazon.es/hz/leaderboard/top-reviewers/ref=cm_cr_tr_link_1?page=1"],"selectors":[{"id":"Change Page","type":"SelectorLink","parentSelectors":["_root","Change Page"],"selector":"th.a-color-base.a-align-bottom li.a-last a","multiple":false,"delay":0},{"id":"Row Select","type":"SelectorElement","parentSelectors":["_root","Change Page"],"selector":"table.a-bordered tr:nth-of-type(n+3):nth-of-type(-n+12)","multiple":true,"delay":0},{"id":"Profile Select","type":"SelectorLink","parentSelectors":["Row Select"],"selector":"td > a.a-link-normal:nth-of-type(1)","multiple":false,"delay":0},{"id":"Name","type":"SelectorText","parentSelectors":["Profile Select"],"selector":"span.a-size-extra-large","multiple":false,"regex":"","delay":0},{"id":"Twitter","type":"SelectorElementAttribute","parentSelectors":["Profile Select"],"selector":"a[href*=\"twitter.com\"]","multiple":false,"extractAttribute":"href","delay":0},{"id":"Instagram","type":"SelectorElementAttribute","parentSelectors":["Profile Select"],"selector":"a[href*=\"instagram\"]","multiple":false,"extractAttribute":"href","delay":0},{"id":"Facebook","type":"SelectorElementAttribute","parentSelectors":["Profile Select"],"selector":"a[href*=\"facebook.com\"]","multiple":false,"extractAttribute":"href","delay":0},{"id":"Location","type":"SelectorText","parentSelectors":["Profile Select"],"selector":"div.a-fixed-right-grid-inner span.a-size-base","multiple":false,"regex":"","delay":0},{"id":"Ranking","type":"SelectorText","parentSelectors":["Profile Select"],"selector":"a.a-link-normal div.a-row span.a-size-base","multiple":false,"regex":"","delay":0},{"id":"Useful Votes","type":"SelectorText","parentSelectors":["Profile Select"],"selector":"div.dashboard-desktop-stat:nth-of-type(1) span.a-size-large","multiple":false,"regex":"","delay":0},{"id":"Reviews","type":"SelectorText","parentSelectors":["Profile Select"],"selector":"div.dashboard-desktop-stat:nth-of-type(2) span.a-size-large","multiple":false,"regex":"","delay":0}]}

Hi !
With this sitemap It scrapes only the first page.
any help ?
Thanks !