Scrape dynamic jsp page

I am trying to scrape this page: GLIDEnumber V2.0

For now I have this sitemap:

{"_id":"glidenumber_all_regions_4","startUrl":["https://www.glidenumber.net/glide/public/search/search.jsp"],"selectors":[{"clickActionType":"real","clickElementSelector":"a.whiteLinks:not(:has(img))","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":2000,"discardInitialElements":"do-not-discard","id":"pagination_test","multiple":true,"parentSelectors":["_root","pagination_test"],"selector":"body > table:nth-child(4) > tbody:nth-child(2) > tr:nth-child(3) > td:nth-child(1) > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(11) > td:nth-child(1) > table:nth-child(4) > tbody:nth-child(1) > tr:nth-child(2) > td:nth-child(1) > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) a.whiteLinks:not(:has(img))","type":"SelectorElementClick"},{"columns":[{"extract":true,"header":"GLIDEnumber","name":"GLIDEnumber"},{"extract":true,"header":"Event","name":"Event"},{"extract":true,"header":"Country","name":"Country"},{"extract":true,"header":"Comments","name":"Comments"}],"id":"table","multiple":true,"parentSelectors":["_root","pagination_test"],"selector":"table[cellspacing='1']","tableDataRowSelector":"tr:nth-of-type(n+2)","tableHeaderRowSelector":"tr.bgLightLight:nth-of-type(1)","type":"SelectorTable"}]}

However, when I run it I can only scrape the last page (page 10). I would like to scrape rows in the table in all pages from 1 to 10.

Lastly, I am trying to scrape all pages (should be 345 pages) on the link.

Hi,

This should provide you with the result you are looking for:

{"_id":"glidenumber_all_regions_4","startUrl":["https://www.glidenumber.net/glide/public/search/search.jsp"],"selectors":[{"id":"pagination_test","paginationType":"auto","parentSelectors":["_root","pagination_test"],"selector":"tr.bgLightLight td > table td.whiteLinks font + a","type":"SelectorPagination"},{"columns":[{"extract":true,"header":"GLIDEnumber","name":"GLIDEnumber"},{"extract":true,"header":"Event","name":"Event"},{"extract":true,"header":"Country","name":"Country"},{"extract":true,"header":"Comments","name":"Comments"}],"id":"table","multiple":true,"parentSelectors":["_root","pagination_test"],"selector":"table[cellspacing='1']","tableDataRowSelector":"tr.bgLightLight:nth-of-type(n+2):not(:has(a.whiteLinks))","tableHeaderRowSelector":"tr.bgLightLight:nth-of-type(1)","type":"SelectorTable"}]}