Paginates all pages but scrapes only the first

I used pagination (beta) and link selector and element click as the final selector. The pagination seems to work but data is scraped only on the first page. I checked other similar entries in the forum but none was responded.

Thank you very much in advance

Sitemap:
{"_id":"talabat2","startUrl":["https://www.talabat.com/oman/restaurants/1403/darsait?sort=name"],"selectors":[{"id":"restaurants","parentSelectors":["_root"],"type":"SelectorLink","selector":"div.list-itemstyles__VendorListItemContainer-sc-ia2hbn-0:nth-of-type(n) a","multiple":true,"delay":0},{"id":"pagination","parentSelectors":["_root","pagination"],"paginationType":"auto","selector":"button.active, a.text-center","type":"SelectorPagination"},{"id":"element","parentSelectors":["restaurants"],"type":"SelectorElement","selector":".menu-category-containerstyles__MenuCategoryStyle-sc-l8657o-0 div:nth-of-type(1) .accordionstyle__AccordionContainer-sc-h3jkuk-0 div.iTRDZL","multiple":true,"delay":0},{"id":"name","parentSelectors":["element"],"type":"SelectorText","selector":"div.f-15","multiple":false,"delay":0,"regex":""},{"id":"price","parentSelectors":["element"],"type":"SelectorText","selector":".mb-m-1 .mb-m-1 span.currency","multiple":false,"delay":0,"regex":""},{"id":"openclose","parentSelectors":["restaurants"],"type":"SelectorText","selector":"span.h5","multiple":false,"delay":0,"regex":""}]}

@emrekko Hi. It happens because you have not set the 'Restaurants' selector as a 'child' for the 'pagination'.

Example:

{"_id":"talabat2","startUrl":["https://www.talabat.com/oman/restaurants/1403/darsait?sort=name"],"selectors":[{"id":"pagination","parentSelectors":["_root","pagination"],"paginationType":"auto","selector":"button.active, a.text-center","type":"SelectorPagination"},{"id":"wrapper-1","parentSelectors":["pagination"],"type":"SelectorElement","selector":"div[class*=\"list-itemstyles__VendorListItemContainer\"]","multiple":true,"delay":0},{"id":"title","parentSelectors":["wrapper-1"],"type":"SelectorText","selector":"h2","multiple":false,"delay":0,"regex":""},{"id":"cuisine","parentSelectors":["wrapper-1"],"type":"SelectorText","selector":".cuisines-section span","multiple":false,"delay":0,"regex":""},{"id":"rating-word","parentSelectors":["wrapper-1"],"type":"SelectorText","selector":"div.rating-word","multiple":false,"delay":0,"regex":""},{"id":"info","parentSelectors":["wrapper-1"],"type":"SelectorText","selector":"div.info-section","multiple":false,"delay":0,"regex":""},{"id":"badge","parentSelectors":["wrapper-1"],"type":"SelectorText","selector":"div.tlb-badge-section","multiple":false,"delay":0,"regex":""}]}

Thank you very much!