Pagination not grabbing any posts

I am trying to get the Post Link, Poster Name, and Post Text for each post in this thread: https://knockout.chat/thread/960/1

I've tried doing pagination in two different ways here. First, by entering the url in my meta data to have [1-10] where the post number would be. Second, by visiting links recursively. Troubleshoot whichever you want, because they both behave pretty much the same afaik.

The pagination aspect of these two sitemaps seems to work. I watch it go through each of the 10 pages. The issue is that when either of them finish, they both output blank .csv files (aside from the column headers). Adding to the confusion, clicking data preview on a "page" selector shows me the data output I would expect for the first page.

pls help

Sitemaps:

{"_id":"knockout","startUrl":["https://knockout.chat/thread/960/[1-10]"],"selectors":[{"id":"post","type":"SelectorElement","parentSelectors":["_root"],"selector":"li.sc-fzqyOu","multiple":true,"delay":0},{"id":"post_link","type":"SelectorLink","parentSelectors":["post"],"selector":"a.sc-pBolk","multiple":false,"delay":0},{"id":"name","type":"SelectorText","parentSelectors":["post"],"selector":"span.sc-paXsP","multiple":false,"regex":"","delay":0},{"id":"post_text","type":"SelectorText","parentSelectors":["post"],"selector":"div.bb-post","multiple":false,"regex":"","delay":0}]}

{"_id":"knockout2","startUrl":["https://knockout.chat/thread/960/1"],"selectors":[{"id":"pagination","type":"SelectorLink","parentSelectors":["_root","pagination"],"selector":"header:nth-of-type(1) a:nth-of-type(9)","multiple":true,"delay":0},{"id":"post_link","type":"SelectorLink","parentSelectors":["post"],"selector":"a.sc-pBolk","multiple":false,"delay":0},{"id":"post","type":"SelectorElement","parentSelectors":["_root","pagination"],"selector":"li.sc-fzqyOu","multiple":true,"delay":0},{"id":"name","type":"SelectorText","parentSelectors":["post"],"selector":"span.sc-Axmtr","multiple":false,"regex":"","delay":0},{"id":"post_text","type":"SelectorText","parentSelectors":["post"],"selector":"div.bb-post","multiple":false,"regex":"","delay":0}]}

I messed with it for a while until it worked. Here is the fixed sitemap, based on my second attempt in the first post.

{"_id":"knockout2","startUrl":["https://knockout.chat/thread/960/1"],"selectors":[{"id":"pagination","type":"SelectorLink","parentSelectors":["_root","pagination"],"selector":"header:nth-of-type(1) a.sc-oVpqz","multiple":true,"delay":0},{"id":"post_link","type":"SelectorElementAttribute","parentSelectors":["post"],"selector":"a.sc-pReKu","multiple":false,"extractAttribute":"href","delay":0},{"id":"post","type":"SelectorElement","parentSelectors":["_root","pagination"],"selector":"li.sc-pANHa","multiple":true,"delay":0},{"id":"name","type":"SelectorText","parentSelectors":["post"],"selector":"span.sc-Axmtr","multiple":false,"regex":"","delay":0},{"id":"post_text","type":"SelectorText","parentSelectors":["post"],"selector":"div.bb-post","multiple":false,"regex":"","delay":0}]}