Untitled
unknown
javascript
2 years ago
453 B
7
Indexable
const raw = document.getElementsByClassName('product-block product-resize fixheight')
for(var i=0;i<raw.length;i++) {
// console.log(raw[i])
const price=raw[i].getElementsByClassName('pro-price ')[0].innerText;
const name=raw[i].getElementsByClassName('pro-name')[0].innerText;
const image=raw[i].getElementsByTagName('picture')[0].getElementsByTagName('source')[2].getAttribute('srcset');
console.log(price,"@@",name,"@",image)
}Editor is loading...