The scraper isn't scraping any data but my previews are working

The scraper isn't scraping any data but my previews are working. I need help troubleshooting the sitemap below.

Url: http://example.com

Sitemap:
'{"_id":"sellcellmap","startUrl":["https://www.sellcell.com/"],"selectors":[{"id":"links","multiple":true,"parentSelectors":["_root"],"selector":".col-sm-3 .iphones a","type":"SelectorLink"},{"clickElementSelector":"label.network-logos-sprite","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":2000,"discardInitialElements":"discard-when-click-element-exists","id":"networkBtn","multiple":true,"parentSelectors":["links"],"selector":"body","type":"SelectorElementClick"},{"clickElementSelector":"label.capacity-logos-sprite","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":2000,"discardInitialElements":"discard-when-click-element-exists","id":"capacityBtn","multiple":true,"parentSelectors":["networkBtn"],"selector":"parent","type":"SelectorElementClick"},{"clickElementSelector":"label.condition","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":4000,"discardInitialElements":"discard-when-click-element-exists","id":"conditionBtn","multiple":true,"parentSelectors":["capacityBtn"],"selector":"parent","type":"SelectorElementClick"},{"extractAttribute":"title","id":"businessName","multiple":true,"parentSelectors":["conditionBtn"],"selector":".has-prices a.recycler-logos-sprite","type":"SelectorElementAttribute"},{"extractAttribute":"data-attribute","id":"networkName","multiple":false,"parentSelectors":["conditionBtn"],"selector":"label.network-logos-sprite.active input","type":"SelectorElementAttribute"},{"id":"capacity","multiple":false,"parentSelectors":["conditionBtn"],"regex":"","selector":"label.capacity-logos-sprite.active","type":"SelectorText"},{"id":"condition","multiple":false,"parentSelectors":["conditionBtn"],"regex":"","selector":"label.condition.active","type":"SelectorText"},{"id":"modelPrices","multiple":true,"parentSelectors":["businessName"],"regex":"","selector":".has-prices div.price","type":"SelectorText"}]}'

@cladg Hello, it appears the sitemap is based on the 'Element click' execution - the results will start to appear once after the respective selector has finished (no new elements are being matched).

Learn more: My scraping job is running, although no results are being returned - Web Scraper Knowledge Base

Also, the 'parent' selector should be set to _parent_ instead and you could decrease the delay values to optimize the average execution time.

Sitemap Example:

{"_id":"sellcellmap","startUrl":["https://www.sellcell.com/"],"selectors":[{"id":"links","multiple":true,"parentSelectors":["_root"],"selector":".col-sm-3 .iphones a","type":"SelectorLink"},{"clickElementSelector":"label.network-logos-sprite","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":1000,"discardInitialElements":"discard-when-click-element-exists","id":"networkBtn","multiple":true,"parentSelectors":["links"],"selector":"body","type":"SelectorElementClick"},{"clickElementSelector":"label.capacity-logos-sprite","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":1000,"discardInitialElements":"discard-when-click-element-exists","id":"capacityBtn","multiple":true,"parentSelectors":["networkBtn"],"selector":"_parent_","type":"SelectorElementClick"},{"clickElementSelector":"label.condition","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":1700,"discardInitialElements":"discard-when-click-element-exists","id":"conditionBtn","multiple":true,"parentSelectors":["capacityBtn"],"selector":"_parent_","type":"SelectorElementClick"},{"extractAttribute":"href","id":"businessName","parentSelectors":["conditionBtn"],"selector":".has-prices a.recycler-logos-sprite","type":"SelectorGroup"},{"extractAttribute":"data-attribute","id":"networkName","multiple":false,"parentSelectors":["conditionBtn"],"selector":"label.network-logos-sprite.active input","type":"SelectorElementAttribute"},{"id":"capacity","multiple":false,"parentSelectors":["conditionBtn"],"regex":"","selector":"label.capacity-logos-sprite.active","type":"SelectorText"},{"id":"condition","multiple":false,"parentSelectors":["conditionBtn"],"regex":"","selector":"label.condition.active","type":"SelectorText"},{"id":"modelPrices","multiple":true,"parentSelectors":["businessName"],"regex":"","selector":".has-prices div.price","type":"SelectorText"}]}