Trouble with pagination and no data

This should be an easy table to scrape but I cannot even get the pagination to work and therefore no data!

Url: https://view-awesome-table.com/-L8bc2O8FCMoo34MYLl2/view/

Sitemap:
{"_id":"awesome2","startUrl":["https://view-awesome-table.com/-L8bc2O8FCMoo34MYLl2/view/"],"selectors":[{"id":"dtable","type":"SelectorTable","parentSelectors":["next"],"selector":"table","multiple":true,"columns":[{"header":"Title","name":"Title","extract":true},{"header":"Owner","name":"Owner","extract":true},{"header":"Type","name":"Type","extract":true},{"header":"Status","name":"Status","extract":true}],"delay":0,"tableDataRowSelector":"tbody tr","tableHeaderRowSelector":"tr.google-visualization-table-tr-head"},{"id":"next","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"div.at-count-bottom","multiple":false,"delay":"500","clickElementSelector":"#paginationBottom .goog-custom-button-collapse-left path","clickType":"clickOnce","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"}]}

You cannot use Type: Table in this case, and you would need to build scrapers for each column, e.g.

{"_id":"forum-awesome-table","startUrl":["https://view-awesome-table.com/-L8bc2O8FCMoo34MYLl2/view/"],"selectors":[{"id":"Row wrappers","type":"SelectorElement","parentSelectors":["_root","Click next"],"selector":"tbody > tr","multiple":true,"delay":0},{"id":"Click next","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"div > table","multiple":false,"delay":"1300","clickElementSelector":"#paginationBottom .goog-custom-button-collapse-left div.at-pagination-button","clickType":"clickMore","discardInitialElements":"discard-when-click-element-exists","clickElementUniquenessType":"uniqueHTML"},{"id":"Title","type":"SelectorText","parentSelectors":["Row wrappers"],"selector":"td:nth-of-type(1)","multiple":false,"regex":"","delay":0},{"id":"Owner","type":"SelectorText","parentSelectors":["Row wrappers"],"selector":"td:nth-of-type(2)","multiple":false,"regex":"","delay":0}]}

Thank you. That works perfectly of course. :grin: