Hello, it's my first time using WebScraper, I'm trying to get the title, price, full description and all available images from every product. I'm having two problems right now. My site map apparently works perfectly, when I go for scrape it seems like it's working properly, but when I get to browse through the data it always only fetch one data from the product page - either price, image, description or title, seemingly at random about what data it fetches. Never more than one. What could be causing this?
And also, even when it does scrape the image links, it agglutinates all of them in one link with commas separating the roots - that won't work for me, I need all complete links separately (but on the same CSV column, separated by a vertical bar |).
Thanks!
Url: https://www.belezanaweb.com.br/
Sitemap:
{"_id":"belezanaweb-products","startUrl":["https://www.belezanaweb.com.br/"],"selectors":[{"id":"subdepartments","type":"SelectorLink","parentSelectors":["_root"],"selector":"a.sub-menu-link.sub-menu-item","multiple":true,"delay":0},{"id":"product-follow","type":"SelectorLink","parentSelectors":["product-element"],"selector":".showcase-item-name a:nth-of-type(2)","multiple":true,"delay":0},{"id":"loadmore","type":"SelectorElementClick","parentSelectors":["subdepartments"],"selector":"div.showcase-item","multiple":true,"delay":"2500","clickElementSelector":"button.btn-bolder","clickType":"clickMore","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"},{"id":"product-name","type":"SelectorText","parentSelectors":["product-page"],"selector":"h1","multiple":true,"regex":"","delay":0},{"id":"product-price","type":"SelectorText","parentSelectors":["product-price"],"selector":"div.nproduct-price-value","multiple":true,"regex":"[1-9]\d{0,2}(\.\d{3})*,\d{2}","delay":0},{"id":"product-description","type":"SelectorText","parentSelectors":["product-price"],"selector":"div:nth-of-type(n+4) > div.accordion-gradient","multiple":true,"regex":"","delay":0},{"id":"image-element","type":"SelectorElement","parentSelectors":["product-page"],"selector":".nproduct-gallery div.product-images","multiple":true,"delay":0},{"id":"loadmoreimages","type":"SelectorElementClick","parentSelectors":["image-element"],"selector":".active img","multiple":true,"delay":"100","clickElementSelector":"span:nth-of-type(n+2)","clickType":"clickMore","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueCSSSelector"},{"id":"product-brand","type":"SelectorText","parentSelectors":["product-element"],"selector":".showcase-item-brand strong","multiple":true,"regex":"","delay":0},{"id":"product-element","type":"SelectorElement","parentSelectors":["loadmore"],"selector":"parent","multiple":true,"delay":0},{"id":"image","type":"SelectorImage","parentSelectors":["loadmoreimages"],"selector":"parent","multiple":true,"delay":0},{"id":"product-page","type":"SelectorElement","parentSelectors":["product-follow"],"selector":"main","multiple":true,"delay":0}]}