Scraping not all the pages

Hi,

Im' using webscraper. The scraping is not working always as good as it should. when i check the preview he shows me what i'm looking for but in the extract, it doesn't scrape for all the items. I have the feeling that the scraping tool goes too fast to the next product without taking the time to scrape.
Can you explain why?

the website to scrape: https://www.greenmeow.be

{"_id":"greenmeow","startUrl":["https://www.greenmeow.be/"],"selectors":[{"id":"category","type":"SelectorLink","parentSelectors":["_root"],"selector":".collapse li:nth-of-type(2) a.dropdown-toggle","multiple":true,"delay":0},{"id":"subcategory","type":"SelectorLink","parentSelectors":["category"],"selector":".list-block > li:nth-of-type(1) > ul > li > a","multiple":true,"delay":0},{"id":"productling","type":"SelectorLink","parentSelectors":["subcategory"],"selector":".product-meta a[itemprop='url']","multiple":true,"delay":0},{"id":"Name","type":"SelectorText","parentSelectors":["productling"],"selector":"h1","multiple":false,"regex":"","delay":0},{"id":"description1","type":"SelectorText","parentSelectors":["productling"],"selector":"div[itemprop='description']","multiple":true,"regex":"","delay":0},{"id":"vendor","type":"SelectorText","parentSelectors":["productling"],"selector":"h6 a","multiple":false,"regex":"","delay":0},{"id":"descriptiondetail","type":"SelectorText","parentSelectors":["productling"],"selector":".tab-pane div.rte","multiple":true,"regex":"","delay":0},{"id":"label","type":"SelectorText","parentSelectors":["productling"],"selector":"td","multiple":true,"regex":"","delay":0},{"id":"avis","type":"SelectorText","parentSelectors":["productling"],"selector":"div#product_comments_block_tab","multiple":true,"regex":"","delay":0}]}

Increase the delay. Standard is 2000 mili seconds.

Increase it to 5000 or 7000.

{"_id":"greenmeow","startUrl":["[https://www.greenmeow.be/"],"selectors":{"id":"category","type":"SelectorLink","parentSelectors":["_root"],"selector":".collapse li:nth-of-type(2) a.dropdown-toggle","multiple":true,"delay":0},{"id":"subcategory","type":"SelectorLink","parentSelectors":["category"],"selector":".list-block > li:nth-of-type(1) > ul > li > a","multiple":true,"delay":0},{"id":"productling","type":"SelectorLink","parentSelectors":["subcategory"],"selector":".product-meta a[itemprop='url']","multiple":true,"delay":0},{"id":"Name","type":"SelectorText","parentSelectors":["productling"],"selector":"h1","multiple":false,"regex":"","delay":0},{"id":"description1","type":"SelectorText","parentSelectors":["productling"],"selector":"div[itemprop='description']","multiple":true,"regex":"","delay":0},{"id":"vendor","type":"SelectorText","parentSelectors":["productling"],"selector":"h6 a","multiple":false,"regex":"","delay":0},{"id":"descriptiondetail","type":"SelectorText","parentSelectors":["productling"],"selector":".tab-pane div.rte","multiple":true,"regex":"","delay":0},{"id":"label","type":"SelectorText","parentSelectors":["productling"],"selector":"td","multiple":true,"regex":"","delay":0},{"id":"avis","type":"SelectorText","parentSelectors":["productling"],"selector":"div#product_comments_block_tab","multiple":true,"regex":"","delay":0}]}

Or increase the delays directly in the sitemap code and recreate it as a new sitemap.

Example:

["productling"],"selector":"td","multiple":true,"regex":"","delay":0},{"id":"avis","type":"SelectorText","parentSelectors":["productling"],"selector":"div#product_comments_block_tab","multiple":true,"regex":"","delay":0}]}


Increased delays:

["productling"],"selector":"td","multiple":true,"regex":"","delay":2000},{"id":"avis","type":"SelectorText","parentSelectors":["productling"],"selector":"div#product_comments_block_tab","multiple":true,"regex":"","delay":2000}]}

Etc, etc................................