Help: Problem with pagination

Hi. I need help with building a map and getting it to work properly.

I need to download locations from the Pokemon Scarlet/Violet games and their The Hidden Treasure of Area Zero expansion pack to an Excel file from https://bulbapedia.bulbagarden.net/. (table in sections Game location

Starting with Bulbasaur:

I made a SiteMap like this but unfortunately I can't get it to go to the next page - to the next Pokemon. Webscrapping ends on one page. Could someone help me with this, what did I do wrong?

My SItMap:
{"id":"Bulbapedia-v2","startUrl":["Bulbasaur (Pokémon) - Bulbapedia, the community-driven Pokémon encyclopedia(Pok%C3%A9mon)"],"selectors":[{"id":"IDs","parentSelectors":["_root"],"type":"SelectorText","selector":"big span","multiple":false,"regex":""},{"id":"location-sv","parentSelectors":["_root"],"type":"SelectorText","selector":"table:nth-of-type(5) tr:nth-of-type(9) tr:nth-of-type(1) tr td","multiple":false,"regex":""},{"id":"location-dlc","parentSelectors":["_root"],"type":"SelectorText","selector":".roundytr tr:contains('The Hidden Treasure of Area Zero') td.roundy","multiple":false,"regex":""},{"id":"pagination","parentSelectors":["_root","pagination"],"paginationType":"auto","type":"SelectorPagination","selector":"tr:nth-of-type(2) td:nth-of-type(3) td:nth-of-type(3)"},{"id":"ids","parentSelectors":["_root"],"type":"SelectorText","selector":"big span","multiple":false,"regex":""}]}

Hi,

Try this setup:

{"_id":"Bulbapedia-v2","startUrl":["https://bulbapedia.bulbagarden.net/wiki/Bulbasaur_(Pok%C3%A9mon)"],"selectors":[{"id":"IDs","multiple":false,"parentSelectors":["pagination"],"regex":"","selector":"big span","type":"SelectorText"},{"id":"location-sv","multiple":false,"parentSelectors":["pagination"],"regex":"","selector":"table:nth-of-type(5) tr:nth-of-type(9) tr:nth-of-type(1) tr td","type":"SelectorText"},{"id":"location-dlc","multiple":false,"parentSelectors":["pagination"],"regex":"","selector":".roundytr tr:contains('The Hidden Treasure of Area Zero') td.roundy","type":"SelectorText"},{"id":"pagination","paginationType":"auto","parentSelectors":["_root","pagination"],"selector":"a:has( > span:contains('→'))","type":"SelectorPagination"},{"id":"ids","multiple":false,"parentSelectors":["pagination"],"regex":"","selector":"big span","type":"SelectorText"}]}