0

I am looking to pull the price data for each of the SKUs I have listed in a google sheet.

My initial try was the use a formula inside of the sheet.

=importxml("SKU Search URL", "//p/span[@data-qa='grid-cell-price']/text()")

This does not work, since the content is dynamic.

What would be the easiest method of obtaining this data?

player0
  • 124,011
  • 12
  • 67
  • 124

1 Answers1

0

Google Sheets does not support web scraping of JavaScript controlled elements. you can easily check it by disabling JS for a given site and only what's left visible can be scraped. in your case, that's nothing, unfortunately:

enter image description here

player0
  • 124,011
  • 12
  • 67
  • 124