Can't get both "Next" and "Show all" pagination to work

I'm trying to scrape a sequence of pages--the page has a "Show More New Releases" button that needs to be clicked to show everything on the page. And then there's a "Next Week" button to advance to the next page. I'm trying to get both of these paginations up, but can't get it to work beyond scraping the first page. Any help greatly appreciated!

Url: New romance books: week of 29 Dec - 4 Jan 2025 | romance.io

Sitemap:
{"_id":"IO2025","startUrl":["https://www.romance.io/new/weekly/2024-12-29"],"selectors":[{"id":"Next","paginationType":"linkFromHref","parentSelectors":["_root","Next"],"selector":".is-mobile a[title='Romance books 5 Jan - 11 Jan 2025']","type":"SelectorPagination"},{"clickActionType":"real","clickElementSelector":"a.btn","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":2000,"discardInitialElements":"do-not-discard","id":"ShowAll","multiple":true,"parentSelectors":["Next"],"selector":"li.has-background","type":"SelectorElementClick"},{"id":"Title","multiple":false,"parentSelectors":["ShowAll"],"regex":"","selector":"h2 a","type":"SelectorText"},{"id":"Author","multiple":false,"parentSelectors":["ShowAll"],"regex":"","selector":"a span","type":"SelectorText"},{"id":"Date","multiple":false,"parentSelectors":["ShowAll"],"regex":"","selector":"span.byline","type":"SelectorText"},{"id":"Tags","multiple":false,"parentSelectors":["ShowAll"],"regex":"","selector":"div.topics","type":"SelectorText"}]}

Hi,

This should work, I changed the pagination type and made some improvements in the selectors:

{"_id":"IO2025","startUrl":["https://www.romance.io/new/weekly/2024-12-29"],"selectors":[{"id":"Next","paginationType":"clickMore","parentSelectors":["_root","Next"],"selector":".pagination-column:has(+) a:contains('next week ❯')","type":"SelectorPagination"},{"clickActionType":"real","clickElementSelector":"a.btn:contains('Show more new releases')","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":2000,"discardInitialElements":"do-not-discard","id":"ShowAll","multiple":true,"parentSelectors":["Next"],"selector":"li.has-background","type":"SelectorElementClick"},{"id":"Title","multiple":false,"parentSelectors":["ShowAll"],"regex":"","selector":"h2 a","type":"SelectorText"},{"id":"Author","multiple":false,"parentSelectors":["ShowAll"],"regex":"","selector":"a span","type":"SelectorText"},{"id":"Date","multiple":false,"parentSelectors":["ShowAll"],"regex":"","selector":"span.byline","type":"SelectorText"},{"id":"Tags","multiple":false,"parentSelectors":["ShowAll"],"regex":"","selector":"div.topics","type":"SelectorText"}]}