Indeed Pagination Help

I'm trying to scrape indeed job offers, but I'm facing some issues with the pagination. I selected all numbers from pagination, but he passes a few pages ahead. It goes like from pagination 1 to 5.

Someone can help me?

Url: https://pt.indeed.com/jobs?q=&l=Portugal&sort=date

Sitemap:
{"_id":"indeed","startUrl":["https://pt.indeed.com/jobs?q=&l=Portugal&sort=date"],"selectors":[{"id":"pagination","parentSelectors":["_root"],"type":"SelectorLink","selector":"#jobsearch-JapanPage > div > div > div.jobsearch-SerpMainContent > div.jobsearch-LeftPane > nav a","multiple":true},{"id":"link","parentSelectors":["_root","pagination"],"type":"SelectorLink","selector":"a.jcs-JobTitle","multiple":true},{"id":"titulo","parentSelectors":["link"],"type":"SelectorText","selector":"h1","multiple":false,"regex":""},{"id":"regiao","parentSelectors":["link"],"type":"SelectorText","selector":".icl-u-textColor--secondary > div:nth-of-type(2) div","multiple":false,"regex":""},{"id":"tipo","parentSelectors":["link"],"type":"SelectorText","selector":".icl-u-textColor--secondary > div:nth-of-type(3) div","multiple":false,"regex":""},{"id":"texto","parentSelectors":["link"],"type":"SelectorText","selector":"#jobDescriptionText","multiple":false,"regex":""}]}

For this example, the URL increments by 10 (10 results per page) so you can use these two URLs as StartURLs:

https://pt.indeed.com/jobs?q=&l=Portugal&sort=date
https://pt.indeed.com/jobs?q=&l=Portugal&sort=date&start=[10:60:10]

The second URL will cause it to stop at page 7. You can change the 60 to whatever page you want to stop at, as a multiple of 10.

Ref: The "range url with increment" method listed under Specify multiple urls with ranges