Skip to content

Instantly share code, notes, and snippets.

View lulitha's full-sized avatar
🙋‍♂️
Available

LULITHA GIHAN lulitha

🙋‍♂️
Available
View GitHub Profile
@jamesandariese
jamesandariese / google.js
Last active November 20, 2023 15:58 — forked from vrumger/google.js
Create a google account and go to youtube with puppeteer.
const puppeteer = require('puppeteer');
const uuid = require('uuid');
const sleep = ms => new Promise(r => setTimeout(r, ms));
(async () => {
const browser = await puppeteer.launch({ headless: false });
const page = await browser.newPage();
const id = uuid.v4();