Pagination issue on specific page

Hello,
I need help with this sitemap, the pagination does not work and I can only gather first-page information.
This is a thesis website:Ulusal Tez Merkezi | Anasayfa
After going and typing "sosyal bilgiler" it displays results without searching again so I set up scrape link to the results page https://tez.yok.gov.tr/UlusalTezMerkezi/tezSorguSonucYeni.jsp
Links work as pagination also, I couldn't pick them as links.
can anyone help? This is for academic research.
Thanks

Sitemap:
{"_id":"yok","startUrl":["https://tez.yok.gov.tr/UlusalTezMerkezi/tezSorguSonucYeni.jsp"],"selectors":[{"id":"links","parentSelectors":["pag","links"],"paginationType":"auto","type":"SelectorPagination","selector":"td:nth-of-type(2) span"},{"id":"kunye","parentSelectors":["links"],"type":"SelectorText","selector":".renkp td:nth-of-type(3)","multiple":false,"regex":""},{"id":"ozet","parentSelectors":["links"],"type":"SelectorText","selector":"td#td0","multiple":false,"regex":""},{"id":"pag","parentSelectors":["_root","pag"],"paginationType":"auto","type":"SelectorPagination","selector":"div.pagination"}]}

Hi,

Please try this setup:

{"_id":"yok","startUrl":["https://tez.yok.gov.tr/UlusalTezMerkezi/tezSorguSonucYeni.jsp"],"selectors":[{"clickActionType":"real","clickElementSelector":"td:nth-of-type(2) span","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":1000,"discardInitialElements":"discard-when-click-element-exists","id":"links","multiple":true,"parentSelectors":["pag"],"selector":"[role=\"dialog\"]","type":"SelectorElementClick"},{"id":"kunye","multiple":false,"parentSelectors":["links"],"regex":"","selector":".renkp td:nth-of-type(3)","type":"SelectorText"},{"id":"ozet","multiple":false,"parentSelectors":["links"],"regex":"","selector":"td#td0","type":"SelectorText"},{"id":"pag","paginationType":"clickMore","parentSelectors":["_root","pag"],"selector":"x.pagination li:nth-of-type(7) a","type":"SelectorPagination"},{"clickActionType":"real","clickElementSelector":"span.ui-icon","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":1000,"discardInitialElements":"do-not-discard","id":"close","multiple":false,"parentSelectors":["links"],"selector":"_parent_","type":"SelectorElementClick"}]}

The navigation is handled by Javascript so there are no links per se, thus everything needs to be handled by clicks.

Note that results will only be returned after clicking through all pages.