Untitled

Anonymous
javascript
10/02/2023 2:26 PM
604 B
23
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...