Skip to content

Instantly share code, notes, and snippets.

View moozzyk's full-sized avatar

Pawel Kadluczka moozzyk

View GitHub Profile
import * as puppeteer from "puppeteer";
(async () => {
const browser = await puppeteer.launch();
const page = await browser.newPage();
await page.goto(
"https://seattle.craigslist.org/search/cta?query=blazer%20k5",
{
waitUntil: "networkidle0",
}