I'm trying to scrape data from some Etsy shops using Google Sheets. Specifically, I'm looking to import the product names in the seller's reviews (outlined in red in this photo). I've successfully imported these names using the following formula where the seller's Etsy URL (https://www.etsy.com/shop/PaperLarkDesigns) is located in cell B4:
=IMPORTXML(B4, "//div[@class='flag-body hide-xs hide-sm']")
But the navigation for the product reviews is dynamically generated, so the formula only imports the titles from the first page of reviews and there doesn't seem to be a URL to direct the formula to a specific page of reviews.
Is there a way to denote which page of reviews the importXML formula should pull these titles from? Or is it not possible to pull data from a site using this type of navigation?
I'm new to the more complex formulas in Excel/ Google Sheets, so thanks in advance for your help!