Only some data is collected

Hi, the below sitemap scrapes 99 pages with 25 data sets per page. So I should collect with it around 2450 data sets. But I only get 477 when it runs through the pages. Perhaps some one can help me here.

Thanks a lot

Sitemap:
{"_id":"SalesNav","startUrl":["Sales Navigator &savedSearchId=1742734482&sessionId=N6CY4Y1YQ5CBW%2Fl766IPCQ%3D%3D"],"selectors":[{"id":"Element","multiple":true,"parentSelectors":["Pagination"],"selector":".justify-space-between div.flex-column","type":"SelectorElement"},{"id":"Name","multiple":false,"parentSelectors":["Element"],"regex":"","selector":"div.artdeco-entity-lockup__title","type":"SelectorText"},{"id":"Mutual Connection","multiple":false,"parentSelectors":["Element"],"regex":"","selector":"[data-control-name='search_spotlight_second_degree_connection'] span","type":"SelectorText"},{"id":"Position","multiple":false,"parentSelectors":["Element"],"regex":"","selector":".artdeco-entity-lockup__subtitle span[data-anonymize]","type":"SelectorText"},{"id":"Company","multiple":false,"parentSelectors":["Element"],"regex":"","selector":"a.t-black--light","type":"SelectorText"},{"id":"Place","multiple":false,"parentSelectors":["Element"],"regex":"","selector":"span.t-12","type":"SelectorText"},{"id":"Link to profile","linkType":"linkFromHref","multiple":false,"parentSelectors":["Element"],"selector":"a[id^="ember"]","type":"SelectorLink"},{"id":"Pagination","paginationType":"auto","parentSelectors":["_root","Pagination"],"selector":".artdeco-pagination__button--next span","type":"SelectorPagination"}]}

yes I tried the page index method before. And unfortunately the same happened

Page 2:

https://www.linkedin.com/sales/search/people?page=2&savedSearchId=1742734482

Page 3:

https://www.linkedin.com/sales/search/people?page=3&savedSearchId=1742734482
It goes until 99

If I do the interval 1-99 it browses through all the pages correctly but somehow it only stores 470 datadsets instead of 2400

I found the problem on my own. It seems that the result list is programmed not very scraper friendly and some elements change their names in the list. So only the top 4 results on every page were scraped... I had to go for the parent selectors which unfortunately lead to more cluttered data and more data cleaning work later on.