Skip to content

Instantly share code, notes, and snippets.

@geshan
Last active January 15, 2026 22:03
Show Gist options
  • Select an option

  • Save geshan/2d565a5354a9a5ea87c1f03ef3de08c0 to your computer and use it in GitHub Desktop.

Select an option

Save geshan/2d565a5354a9a5ea87c1f03ef3de08c0 to your computer and use it in GitHub Desktop.
@geshan
Copy link
Copy Markdown
Author

geshan commented Jan 15, 2026

let photoDivs = $$('div.spf-product-card__image-main');
let photoUrls = [];
for (photoDiv of photoDivs) {
console.log(photoDiv)
const photoUrl = photoDiv.style.backgroundImage;
photoUrls.push(photoUrl);
}
console.log(photoUrls);
console.log(photoUrls.join(" "));

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment