-
-
Save rahulkhairnarr/99b12f929b803a0cef80c3a6763ccc44 to your computer and use it in GitHub Desktop.
This file contains 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
const puppeteer = require("puppeteer"); | |
(async () => { | |
const browser = await puppeteer.launch({ | |
headless: false, | |
defaultViewport: false | |
}); | |
const page = (await browser.pages())[0]; | |
// imaginary page with a captcha on it | |
await page.goto( | |
"https://example.com/captcha-page", | |
{ waitUntil: "load" } | |
); | |
const elementHandler = await page.$("#captcha-container img"); | |
// base64String contains the captcha image's base64 encoded version | |
const base64String = await elementHandler.screenshot({ encoding: "base64" }); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment