This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Learn more about agentQL at AgentQL.com | |
const { wrap, configure } = require('agentql'); | |
const { chromium } = require('playwright'); | |
# Learn more about Zenrows browser API at https://docs.zenrows.com/scraping-browser/get-started/playwright | |
const connectionURL = 'wss://browser.zenrows.com?apikey=' + process.env.ZENROWS_API_KEY; | |
// Set the URL to the desired website | |
const URL = 'https://www.etsy.com/uk/search?q=gift&anchor_listing_id=1807561558&mosv=ssos&moci=1299343889674&mosi=1299363012586&is_merch_library=true&max=30'; |
OlderNewer