Skip to content

Instantly share code, notes, and snippets.

View KaruRose's full-sized avatar

David Rosas KaruRose

View GitHub Profile
@KaruRose
KaruRose / index.js
Created August 6, 2023 21:44 — forked from fazt/index.js
import puppeteer from "puppeteer";
async function openWebPage() {
const browser = await puppeteer.launch({
headless: false,
slowMo: 200,
});
const page = await browser.newPage();
await page.goto("https://www.example.com");
await browser.close();