I am pretty sure I am doing this correctly. I am trying to scrape my order from my company website. When I do a single element it works perfectly. It goes to the element then the link and scrapes the title, description, and images. When I do multiple elements, though, it gives all the info from the last element on the page as the details for all the other elements. It's as if it cannot click on each unique element and grab the data for each of my products. I stay logged into my computer when using the webscraper. I'm not sure if you will be able to test it for me, but hopefully someone here will see an easy fix for my problem.
https://paparazziaccessories.com/accounts/profile/#/shop/history/6411353/
Here is what it looks like:
And here is a product page:
Here are some of the bad results I am getting. As you can see it is putting the "hostess rewards" link in all my results instead of the correct info:
Sitemap:
{"_id":"full-order-product-scrape","startUrl":["https://paparazziaccessories.com/accounts/profile/#/shop/history/6411353/"],"selectors":[{"id":"order-number","type":"SelectorText","parentSelectors":["_root"],"selector":"h2","multiple":false,"regex":"(?<=\#)(.?)(?=\ )","delay":0},{"id":"order-date","type":"SelectorText","parentSelectors":["_root"],"selector":"h2","multiple":false,"regex":"(?<=\ ).$","delay":0},{"id":"Quantity","type":"SelectorText","parentSelectors":["element"],"selector":"a","multiple":false,"regex":"\d","delay":0},{"id":"rep-product-url","type":"SelectorLink","parentSelectors":["_root","element"],"selector":"a","multiple":false,"delay":0},{"id":"title","type":"SelectorText","parentSelectors":["rep-product-url"],"selector":"a.name","multiple":false,"regex":"","delay":0},{"id":"sku","type":"SelectorText","parentSelectors":["rep-product-url"],"selector":"div.sku","multiple":false,"regex":"(?<=\#).*$","delay":0},{"id":"description1","type":"SelectorText","parentSelectors":["rep-product-url"],"selector":".description p:nth-of-type(1)","multiple":false,"regex":"","delay":0},{"id":"description2","type":"SelectorHTML","parentSelectors":["rep-product-url"],"selector":"p:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"image-url","type":"SelectorElement","parentSelectors":["rep-product-url"],"selector":"div.product-images-list","multiple":false,"delay":0},{"id":"image","type":"SelectorLink","parentSelectors":["image-url"],"selector":"a","multiple":true,"delay":0},{"id":"element","type":"SelectorElement","parentSelectors":["_root"],"selector":"li.list-group-item","multiple":true,"delay":0}]}