Problem with pagination only stay on the first page

i am practicing to scrape data from a website,
but currently my scraping only working for the first page only,
is there any help for this case?

My Sitempap:

{"_id":"haysdetrial2","startUrl":["https://www.hays.de/jobsuche/stellenangebote-jobs/p/1/?q=sap"],"selectors":[{"id":"Next Button","type":"SelectorLink","parentSelectors":["_root","Next Button"],"selector":"a.search__results__pagination__next","multiple":true,"delay":0},{"id":"JobOffer","type":"SelectorLink","parentSelectors":["Next Button"],"selector":"div.search__result__header a:nth-of-type(1)","multiple":true,"delay":0},{"id":"jobTItle","type":"SelectorText","parentSelectors":["JobOffer"],"selector":"h1.hays__job__details__job__title","multiple":false,"regex":"","delay":0},{"id":"Aufgaben","type":"SelectorText","parentSelectors":["JobOffer"],"selector":"div.container.hays__job__detail__your-task ul","multiple":false,"regex":"","delay":0},{"id":"qualifikationen","type":"SelectorText","parentSelectors":["JobOffer"],"selector":"div.container.hays__job__details__your-qualifications ul","multiple":false,"regex":"","delay":0},{"id":"Vorteile","type":"SelectorText","parentSelectors":["JobOffer"],"selector":"div.container.hays__job__details__your-advantages ul","multiple":false,"regex":"","delay":0},{"id":"Email Kontakt","type":"SelectorText","parentSelectors":["JobOffer"],"selector":"span.hays__job__details__your-contact-at-hays--desktop a:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"Telefonnummer","type":"SelectorText","parentSelectors":["JobOffer"],"selector":"span.hays__job__details__your-contact-at-hays--desktop a:nth-of-type(1)","multiple":false,"regex":"","delay":0},{"id":"Reference Number","type":"SelectorText","parentSelectors":["JobOffer"],"selector":"div.hays__job__details div.col-lg-10","multiple":false,"regex":"","delay":0}]}

By clicking through pages, you can see that the link on top changes corresponding with the page number, so the easiest way to do the pagination would be by altering the the start url to:

https://www.hays.de/jobsuche/stellenangebote-jobs/p/[1-106]/?q=sap

Just use the squared brackets to enter the page numbers and webscraper will cycle through all of them

Thank you so much, there are several tricks that i don't know about this tools