Unable to add pagination (help with correcting errors)

When I create the sitemap and have it only scrape one page, everything works fine. But when I try to add in pagination with element click and set it to (more) nothing is scraped. Based on some of your feedback with another issue, I thought it might be because there are a lot of errors on the page. I copied them below along with my sitemap, but not sure how to fix the errors. If any of you have any suggestions that would be great. I've also tried selecting a few different elements on the page to try to make it work. Thanks in advance for your help

{"_id":"zagat-rated-restaurants-albany-park","startUrl":["https://www.zagat.com/search?location_id=hood:chicago:Albany%20Park"],"selectors":[{"id":"restaurants","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"zgt-placecard.zgt-place-results-placecard, div.zgt-place-results-navigation","multiple":true,"delay":"2000","clickElementSelector":"ng-include.zgt-place-results-next","clickType":"clickMore","discardInitialElements":false,"clickElementUniquenessType":"uniqueCSSSelector"},{"id":"name","type":"SelectorText","parentSelectors":["restaurants"],"selector":"span.zgt-basic-facts-title-text","multiple":false,"regex":"","delay":0},{"id":"location","type":"SelectorText","parentSelectors":["restaurants"],"selector":"span.zgt-basic-facts-neighborhood","multiple":false,"regex":"","delay":0},{"id":"price","type":"SelectorText","parentSelectors":["restaurants"],"selector":"zgt-zagat-price span","multiple":false,"regex":"","delay":0},{"id":"cuisine","type":"SelectorText","parentSelectors":["restaurants"],"selector":"span.zgt-basic-facts-cuisine","multiple":false,"regex":"","delay":0},{"id":"description","type":"SelectorText","parentSelectors":["restaurants"],"selector":"div.zgt-placecard-google-summary","multiple":false,"regex":"","delay":0},{"id":"zagat-rating","type":"SelectorText","parentSelectors":["restaurants"],"selector":"div.zgt-zagat-rating","multiple":false,"regex":"","delay":0},{"id":"google-rating","type":"SelectorText","parentSelectors":["restaurants"],"selector":"div.zgt-google-score-cell","multiple":false,"regex":"","delay":0}]}

must have a valid `as` value search?location_id=hood:chicago:Albany Park:9 must have a valid `as` value search?location_id=hood:chicago:Albany Park:10 must have a valid `as` value search?location_id=hood:chicago:Albany Park:11 must have a valid `as` value deps.js:1 Uncaught SyntaxError: Unexpected token < 20app.1536676588.js:1 basic facts location service has not yet been requested (anonymous) @ app.1536676588.js:1 (anonymous) @ vendor.1536676588.js:7 (anonymous) @ vendor.1536676588.js:7 $digest @ vendor.1536676588.js:7 $apply @ vendor.1536676588.js:7 (anonymous) @ vendor.1536676588.js:7 y @ vendor.1536676588.js:7 $.onload @ vendor.1536676588.js:7 load (async) (anonymous) @ vendor.1536676588.js:7 (anonymous) @ vendor.1536676588.js:7 (anonymous) @ vendor.1536676588.js:7 (anonymous) @ vendor.1536676588.js:7 (anonymous) @ vendor.1536676588.js:7 $digest @ vendor.1536676588.js:7 $apply @ vendor.1536676588.js:7 (anonymous) @ vendor.1536676588.js:7 invoke @ vendor.1536676588.js:7 i @ vendor.1536676588.js:7 _e @ vendor.1536676588.js:7 ke @ vendor.1536676588.js:7 (anonymous) @ vendor.1536676588.js:7 n @ vendor.1536676588.js:7

Ok looks like changing the selector uniqueness to HTML solved the problem, but i'm not sure why. I tried reading the documentation but not fully understanding it. Can someone try to explain the how the uniqueness works and why you may choose one setting over the other?

Hi there!

Have you read this?

I did...but still couldn't get my head wrapped around it. The uniqueness option shows for the element click...but I use it for clicking the same element over and over in the case of pagination. So I dont understand what can be unique when it's the same element. If I was telling the scraper to click different page numbers everytime, setting the uniqueness to text would make sense

......aaaand after writing that I think I got it....the html is unique because even tho I'm hitting "next" every time, it's going to a different page/url. I get it...just had to talk it through haha