const puppeteer = require('puppeteer'); const chromeOptions = { headless:false, defaultViewport: null}; (async function main() { const browser = await puppeteer.launch(chromeOptions); const page = await browser.newPage(); await page.goto('https://old.reddit.com/login'); })() await page.type('#user_reg', 'some_username'); await page.type('#passwd_reg', 'SuperStrongP@ssw0rd'); await page.type('#passwd2_reg', 'SuperStrongP@ssw0rd'); await page.click('#register-form button[type=submit]'); const chromeOptions = { headless:false, defaultViewport: null, slowMo:15, };
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter