Next button dont move to next page

Describe the problem.
Seems like the next page url is not saved when scraping, i use Link and also tried ElementClick, maybe my selection is wrong (i clicked the button in selector)?

Url: https://www.boligportal.dk/find?placeIds=15

Sitemap:
{id:"sitemap code"}
{"_id":"boligportal-kbh","startUrl":["https://www.boligportal.dk/find?placeIds=15"],"selectors":[{"id":"next-pagination","type":"SelectorLink","parentSelectors":["_root","next-pagination"],"selector":"a:nth-of-type(8)","multiple":true,"delay":0},{"id":"link","type":"SelectorLink","parentSelectors":["_root","next-pagination"],"selector":".CardList a","multiple":true,"delay":0},{"id":"Titel","type":"SelectorText","parentSelectors":["link"],"selector":"h1","multiple":false,"regex":"","delay":0},{"id":"Adresse","type":"SelectorText","parentSelectors":["link"],"selector":"h2","multiple":false,"regex":"","delay":0},{"id":"Boligtype","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(1) div:nth-of-type(1) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Værelser","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(1) div:nth-of-type(3) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Møbleret","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(1) div:nth-of-type(5) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Husdyr","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(1) div:nth-of-type(7) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Størrelse","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(1) div:nth-of-type(2) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Etage","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(1) div:nth-of-type(4) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Delevenlig","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(1) div:nth-of-type(6) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Lejeperiode","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(2) div:nth-of-type(1) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Månedlig leje","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(2) div:nth-of-type(3) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Depositum","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(2) div:nth-of-type(5) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Indflytningspris","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(2) div:nth-of-type(7) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Overtagelsesdato","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(2) div:nth-of-type(2) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Aconto","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(2) div:nth-of-type(4) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Forudbetalt leje","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(2) div:nth-of-type(6) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Sagsnr","type":"SelectorText","parentSelectors":["link"],"selector":"div:nth-of-type(9) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0}]}

It will not work with link selector since there is not any link under the next page element, so I used the click element instead.

In your place I would also change some selector since they are to specific (e.g. nth-of-type) to make them more general.

{"_id":"boligportal-kbh","startUrl":["https://www.boligportal.dk/find?placeIds=15"],"selectors":[{"id":"next-pagination","type":"SelectorElementClick","parentSelectors":["_root","next-pagination"],"selector":"div.AdCard__content","multiple":true,"delay":2000,"clickElementSelector":"a.PaginationControl:contains("Næste")","clickType":"clickMore","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueCSSSelector"},{"id":"link","type":"SelectorLink","parentSelectors":["_root","next-pagination"],"selector":".CardList a","multiple":true,"delay":0},{"id":"Titel","type":"SelectorText","parentSelectors":["link"],"selector":"h1","multiple":false,"regex":"","delay":0},{"id":"Adresse","type":"SelectorText","parentSelectors":["link"],"selector":"h2","multiple":false,"regex":"","delay":0},{"id":"Boligtype","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(1) div:nth-of-type(1) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Værelser","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(1) div:nth-of-type(3) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Møbleret","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(1) div:nth-of-type(5) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Husdyr","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(1) div:nth-of-type(7) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Størrelse","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(1) div:nth-of-type(2) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Etage","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(1) div:nth-of-type(4) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Delevenlig","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(1) div:nth-of-type(6) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Lejeperiode","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(2) div:nth-of-type(1) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Månedlig leje","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(2) div:nth-of-type(3) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Depositum","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(2) div:nth-of-type(5) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Indflytningspris","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(2) div:nth-of-type(7) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Overtagelsesdato","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(2) div:nth-of-type(2) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Aconto","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(2) div:nth-of-type(4) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Forudbetalt leje","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(2) div:nth-of-type(6) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Sagsnr","type":"SelectorText","parentSelectors":["link"],"selector":"div:nth-of-type(9) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0}]}

I try to import json but its invalid?

{"_id":"boligportal-kbh","startUrl":["https://www.boligportal.dk/find?placeIds=15"],"selectors":[{"id":"next-pagination","type":"SelectorElementClick","parentSelectors":["_root","next-pagination"],"selector":"div.AdCard__content","multiple":true,"delay":2000,"clickElementSelector":"a.PaginationControl:contains("Næste")","clickType":"clickMore","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueCSSSelector"},{"id":"link","type":"SelectorLink","parentSelectors":["_root","next-pagination"],"selector":".CardList a","multiple":true,"delay":0},{"id":"Titel","type":"SelectorText","parentSelectors":["link"],"selector":"h1","multiple":false,"regex":"","delay":0},{"id":"Adresse","type":"SelectorText","parentSelectors":["link"],"selector":"h2","multiple":false,"regex":"","delay":0},{"id":"Boligtype","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(1) div:nth-of-type(1) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Værelser","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(1) div:nth-of-type(3) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Møbleret","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(1) div:nth-of-type(5) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Husdyr","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(1) div:nth-of-type(7) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Størrelse","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(1) div:nth-of-type(2) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Etage","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(1) div:nth-of-type(4) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Delevenlig","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(1) div:nth-of-type(6) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Lejeperiode","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(2) div:nth-of-type(1) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Månedlig leje","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(2) div:nth-of-type(3) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Depositum","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(2) div:nth-of-type(5) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Indflytningspris","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(2) div:nth-of-type(7) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Overtagelsesdato","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(2) div:nth-of-type(2) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Aconto","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(2) div:nth-of-type(4) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Forudbetalt leje","type":"SelectorText","parentSelectors":["link"],"selector":"div.AdFeatures:nth-of-type(2) div:nth-of-type(6) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0},{"id":"Sagsnr","type":"SelectorText","parentSelectors":["link"],"selector":"div:nth-of-type(9) span.AdFeatures__item-value","multiple":false,"regex":"","delay":0}]}