Need help (scraping infinite scroll page doesn't scrape all links only scrapes the first few links or the last few links)

hi guys need help, i am trying to scrape the posts from https://titterfun.com/ with (post url, post title and user comments and replys and post video url and post image url and likes count and comments count) for every post but the scraper stops after only scraping the first few posts i have tried increasing the element limit but had the same result.
if anyone has a solution please help me, thanks in advance.

Url: https://titterfun.com/

Sitemap:
{"_id":"test_titterfun","startUrl":["https://titterfun.com/"],"selectors":[{"id":"post link","parentSelectors":["_root","scroll"],"type":"SelectorLink","selector":".styles_headerRight__valn3 > a","multiple":true},{"id":"scroll","parentSelectors":["_root","scroll"],"type":"SelectorElementScroll","selector":"div.styles_container__jxhks","multiple":true,"delay":2000,"elementLimit":100}]}

@tk5mevbvo40 Hi, try to target the 'article' element instead. Here's an example:

{"_id":"test_titterfun","startUrl":["https://titterfun.com/"],"selectors":[{"id":"post link","multiple":true,"parentSelectors":["scroll"],"selector":".styles_headerRight__valn3 > a","type":"SelectorLink"},{"delay":2000,"elementLimit":0,"id":"scroll","multiple":true,"parentSelectors":["_root"],"selector":"article","type":"SelectorElementScroll"}]}

thankyou for the solution it's working.