Why would a scraper not be getting data?

My scraper is running perfectly it seems but there is no data collection from the site through the sitemap. I check the data preview for all the child selectors and they show up correctly. In addition, the sitemap url is correct and the pagination link selectors show seeminly correct data.

What could I be doing wrong? Help would be very appreciated!!

Sitemap:
{"_id":"tradesy_2018-19","startUrl":["https://www.tradesy.com/wedding-dresses/?year-purchased=2017|2018"],"selectors":[{"id":"pagination","type":"SelectorLink","parentSelectors":["_root","pagination"],"selector":"a.item-image","multiple":true,"delay":"500"},{"id":"product-link","type":"SelectorLink","parentSelectors":["_root","pagination"],"selector":"div.listing-img a","multiple":true,"delay":"500"},{"id":"dresstitle","type":"SelectorText","parentSelectors":["product-link"],"selector":"span a.tags","multiple":false,"regex":"","delay":0},{"id":"retail price","type":"SelectorText","parentSelectors":["product-link"],"selector":"div.item-price-retail","multiple":false,"regex":"","delay":0},{"id":"sizing","type":"SelectorText","parentSelectors":["product-link"],"selector":"span.item-size","multiple":false,"regex":"","delay":0},{"id":"dress-type","type":"SelectorText","parentSelectors":["product-link"],"selector":"span#idp-title","multiple":false,"regex":"","delay":0},{"id":"dress-description","type":"SelectorText","parentSelectors":["product-link"],"selector":"div.idp-description p.truncate-copy","multiple":false,"regex":"","delay":0}]}

The pagination was not quite right in your sitemap

This one should work:

{"_id":"tradesy_2018-19","startUrl":["https://www.tradesy.com/wedding-dresses/?year-purchased=2017|2018"],"selectors":[{"id":"product-link","type":"SelectorLink","parentSelectors":["_root","pagination"],"selector":"a.item-image","multiple":true,"delay":"500"},{"id":"dresstitle","type":"SelectorText","parentSelectors":["product-link"],"selector":"span a.tags","multiple":false,"regex":"","delay":0},{"id":"retail price","type":"SelectorText","parentSelectors":["product-link"],"selector":"div.item-price-retail","multiple":false,"regex":"","delay":0},{"id":"sizing","type":"SelectorText","parentSelectors":["product-link"],"selector":"span.item-size","multiple":false,"regex":"","delay":0},{"id":"dress-type","type":"SelectorText","parentSelectors":["product-link"],"selector":"span#idp-title","multiple":false,"regex":"","delay":0},{"id":"dress-description","type":"SelectorText","parentSelectors":["product-link"],"selector":"div.idp-description p.truncate-copy","multiple":false,"regex":"","delay":0},{"id":"pagination","type":"SelectorLink","parentSelectors":["_root","pagination"],"selector":"a#page-next","multiple":true,"delay":0}]}

Hey there - thanks for looking into it! Unfortunately, the data is still not being aggregated with now the pop up tab opening and staying only on each page and not going directly to each product...

Any insights as to why this might be happening?

The scraper executes pagination first, finding all of the URLs to begin with and only ten it will start entering individual item pages and returning results