Paginating more than 1st and second page

Hello. So i have problem with scraping data from the site below. The problem is that paginating takes only first and second page. I tried different pagination methods found on webs scraper yt page, read documentation. Im sitting here for hours and im out of ideas. One of the possible solutions is forcing the list to load with Show all(records, starting is 25 and it would remove pagination problem by removing pagination but idk how to do it) Some fixes i found are preventing any scraping at all and the others just page only 2 pages. Below is the current stat of my sitemap. Please help

Url: https://steamdb.info/graph/

Sitemap:
{"_id":"graph","startUrl":["https://steamdb.info/graph/"],"selectors":[{"id":"wejscie_appid","type":"SelectorLink","parentSelectors":["_root","paginator"],"selector":"td a","multiple":true,"delay":0},{"id":"appid","type":"SelectorText","parentSelectors":["wejscie_appid"],"selector":"tr:contains('App ID') td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"nazwagry","type":"SelectorText","parentSelectors":["wejscie_appid"],"selector":"tr:contains('Name') td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"dev","type":"SelectorText","parentSelectors":["wejscie_appid"],"selector":"tr:contains('Developer') td > span","multiple":false,"regex":"","delay":0},{"id":"releaseday","type":"SelectorText","parentSelectors":["wejscie_appid"],"selector":"tr:contains('Release Date') td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"playersonline","type":"SelectorText","parentSelectors":["wejscie_appid"],"selector":"ul.steamspy-stats:nth-of-type(1) li:nth-of-type(1) strong","multiple":false,"regex":"","delay":0},{"id":"24hpeak","type":"SelectorText","parentSelectors":["wejscie_appid"],"selector":"ul.steamspy-stats:nth-of-type(1) li:nth-of-type(2) strong","multiple":false,"regex":"","delay":0},{"id":"alltimepeak","type":"SelectorText","parentSelectors":["wejscie_appid"],"selector":"ul.steamspy-stats:nth-of-type(1) li:nth-of-type(3) strong","multiple":false,"regex":"","delay":0},{"id":"positivereviews","type":"SelectorText","parentSelectors":["wejscie_appid"],"selector":"span.header-thing-good","multiple":false,"regex":"","delay":0},{"id":"negativereviews","type":"SelectorText","parentSelectors":["wejscie_appid"],"selector":"span.header-thing-poor","multiple":false,"regex":"","delay":0},{"id":"averagetotalplaytime","type":"SelectorText","parentSelectors":["wejscie_appid"],"selector":"li:nth-of-type(2) strong.steamspy-stats-ml","multiple":false,"regex":"","delay":0},{"id":"paginator","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"li.paginate_button.active a","multiple":true,"delay":0,"clickElementSelector":"li.paginate_button.next a","clickType":"clickOnce","discardInitialElements":false,"clickElementUniquenessType":"uniqueHTMLText"}]}

Hi There -

It looks like you tried to use elementClick to handle pagination. The way you set up your map would have been correct if each page changed the URL (but you'd use regular link selector)

Since it doesn't. You would configure elementClick, setting click selector = the "next page" button (which you did) and then set selector = each line of list.

Have a look.. It will go through every page and then start going into each link

{"_id":"forum-fix-steam","startUrl":["https://steamdb.info/graph/"],"selectors":[{"id":"wejscie_appid","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"td:nth-of-type(n+2)","multiple":true,"delay":0,"clickElementSelector":"li.paginate_button.next a","clickType":"clickMore","discardInitialElements":false,"clickElementUniquenessType":"uniqueHTML"},{"id":"appid","type":"SelectorText","parentSelectors":["real-link-Select"],"selector":"tr:contains('App ID') td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"nazwagry","type":"SelectorText","parentSelectors":["real-link-Select"],"selector":"tr:contains('Name') td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"dev","type":"SelectorText","parentSelectors":["real-link-Select"],"selector":"tr:contains('Developer') td > span","multiple":false,"regex":"","delay":0},{"id":"releaseday","type":"SelectorText","parentSelectors":["real-link-Select"],"selector":"tr:contains('Release Date') td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"playersonline","type":"SelectorText","parentSelectors":["real-link-Select"],"selector":"ul.steamspy-stats:nth-of-type(1) li:nth-of-type(1) strong","multiple":false,"regex":"","delay":0},{"id":"24hpeak","type":"SelectorText","parentSelectors":["real-link-Select"],"selector":"ul.steamspy-stats:nth-of-type(1) li:nth-of-type(2) strong","multiple":false,"regex":"","delay":0},{"id":"alltimepeak","type":"SelectorText","parentSelectors":["real-link-Select"],"selector":"ul.steamspy-stats:nth-of-type(1) li:nth-of-type(3) strong","multiple":false,"regex":"","delay":0},{"id":"positivereviews","type":"SelectorText","parentSelectors":["real-link-Select"],"selector":"span.header-thing-good","multiple":false,"regex":"","delay":0},{"id":"negativereviews","type":"SelectorText","parentSelectors":["real-link-Select"],"selector":"span.header-thing-poor","multiple":false,"regex":"","delay":0},{"id":"averagetotalplaytime","type":"SelectorText","parentSelectors":["real-link-Select"],"selector":"li:nth-of-type(2) strong.steamspy-stats-ml","multiple":false,"regex":"","delay":0},{"id":"real-link-Select","type":"SelectorLink","parentSelectors":["wejscie_appid"],"selector":"a","multiple":false,"delay":0}]}