Scrape continuously loading table

Looking to scrape a transactions table that has a "load more" button. Would like to get at least 10 clicks of "load more" worth of data, but can currently only get the first. Please help

Url: https://nbatopshot.com/transactions

Sitemap:
{"_id":"topshop_scrape_feb","startUrl":["https://nbatopshot.com/transactions"],"selectors":[{"columns":[{"extract":true,"header":"Moment","name":"Moment"},{"extract":true,"header":"Price","name":"Price"},{"extract":true,"header":"Serial","name":"Serial"},{"extract":true,"header":"Set","name":"Set"},{"extract":true,"header":"Series","name":"Series"},{"extract":true,"header":"Buyer","name":"Buyer"},{"extract":true,"header":"Seller","name":"Seller"},{"extract":true,"header":"Date / Time","name":"Date / Time"}],"delay":0,"id":"transaction_data","multiple":true,"parentSelectors":["page"],"selector":"table","tableDataRowSelector":".TableStyles__TBody-sc-1saikeo-6 tr","tableHeaderRowSelector":".TableStyles__THead-sc-1saikeo-2 tr","type":"SelectorTable"},{"id":"page","paginationType":"auto","parentSelectors":["_root","page"],"selector":"button","type":"SelectorPagination"}]}

@lzchew Hello. It appears that it takes quite a while to load the remaining results, therefore you should use an 'Element click' selector instead with the delay value set to at least 5000-10'000.

Example:

{"_id":"topshop_scrape_feb","startUrl":["https://nbatopshot.com/transactions"],"selectors":[{"clickElementSelector":"button.ButtonBase__StyledButton-sc-1qgxh2e-0","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":10000,"discardInitialElements":"do-not-discard","id":"wrapper-click","multiple":true,"parentSelectors":["_root"],"selector":"[class*=\"TableStyles__TBody\"] tr","type":"SelectorElementClick"},{"delay":0,"id":"name","multiple":false,"parentSelectors":["wrapper-click"],"regex":"","selector":"td:nth(1)","type":"SelectorText"},{"delay":0,"id":"price","multiple":false,"parentSelectors":["wrapper-click"],"regex":"","selector":"td:nth(2)","type":"SelectorText"},{"delay":0,"id":"serial","multiple":false,"parentSelectors":["wrapper-click"],"regex":"","selector":"td:nth(3)","type":"SelectorText"}]}