Load more - only 3 pages loading

I'm trying to scrape details from a site with a load more selector, which adds records to the bottom of a list. I can get the scraper to go to the third set of records loaded by the button (and then click through to get the data I need), but no further...any ideas what I might be doing wrong?

https://cihhousing.com/exhibitor-list/exhibitor-list

{"_id":"cihhousing","startUrl":["https://cihhousing.com/exhibitor-list"],"selectors":[{"id":"clicker","type":"SelectorLink","parentSelectors":["_root","scroller"],"selector":"h2.aos-ArticleTitle a","multiple":true,"delay":0},{"id":"Name","type":"SelectorText","parentSelectors":["clicker"],"selector":"h1.aos-ArticleTitle","multiple":false,"regex":"","delay":0},{"id":"Address","type":"SelectorText","parentSelectors":["clicker"],"selector":"div.aos-DS47-N.aos-ArticleStandInfoAddress","multiple":false,"regex":"","delay":0},{"id":"Website","type":"SelectorText","parentSelectors":["clicker"],"selector":"div.aos-DS47-N.aos-ArticleStandInfoWeb a","multiple":false,"regex":"","delay":0},{"id":"Categories","type":"SelectorText","parentSelectors":["clicker"],"selector":"a.aos-DS47-Tag","multiple":true,"regex":"","delay":0},{"id":"Blurb","type":"SelectorText","parentSelectors":["clicker"],"selector":"p","multiple":false,"regex":"","delay":0},{"id":"scroller","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"div.aos-SHC:nth-of-type(1) img.aos-Image","multiple":true,"delay":0,"clickElementSelector":"nav.aos-FL button.aos-DS93-HButton","clickType":"clickMore","discardInitialElements":true,"clickElementUniquenessType":"uniqueCSSSelector"}]}

There are a few errors here. You managed to combine two type of pagination (a) where you make a page recursive and when you use element Click \selector.

What you need to do:

Element Click Selector (In Root) {This has two options Click Selector & Element Selector}
Click Selector is tied to the (load more) button
Element Selector is linked to each one of the companies
Multiple is Checked
No other box is checked

Next - Go to the child of that Element Click Selector:

Click Selector - Tied to the first link in the first element you want (it won't let you select anything else)

Next - Go into the child of the Click Selector and that's where all your data selectors are (you had this right)

{"_id":"forum-paginate-error","startUrl":["https://cihhousing.com/exhibitor-list"],"selectors":[{"id":"clicker","type":"SelectorLink","parentSelectors":["scroller"],"selector":"h2.aos-ArticleTitle a","multiple":false,"delay":0},{"id":"Name","type":"SelectorText","parentSelectors":["clicker"],"selector":"h1.aos-ArticleTitle","multiple":false,"regex":"","delay":0},{"id":"Address","type":"SelectorText","parentSelectors":["clicker"],"selector":"div.aos-DS47-N.aos-ArticleStandInfoAddress","multiple":false,"regex":"","delay":0},{"id":"Website","type":"SelectorText","parentSelectors":["clicker"],"selector":"div.aos-DS47-N.aos-ArticleStandInfoWeb a","multiple":false,"regex":"","delay":0},{"id":"Categories","type":"SelectorText","parentSelectors":["clicker"],"selector":"a.aos-DS47-Tag","multiple":true,"regex":"","delay":0},{"id":"Blurb","type":"SelectorText","parentSelectors":["clicker"],"selector":"p","multiple":false,"regex":"","delay":0},{"id":"scroller","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"div.aos-SHCi","multiple":true,"delay":0,"clickElementSelector":"nav.aos-FL button.aos-DS93-HButton","clickType":"clickMore","discardInitialElements":false,"clickElementUniquenessType":"uniqueCSSSelector"}]}

That works perfectly - thanks. I did think I had some issues around recursiveness, managed to get myself into a bit of a knot with it....