undetected-puppeteer
v1.0.1
Published
1:1 (sorta) replacement for Puppeteer, but undetected
Downloads
122
Maintainers
Readme
undetected-puppeteer
Literally Puppeteer (for Chrome), but not detected asf
Fingerprinting Results
Installation
npm install undetected-puppeteerUsage
const puppeteer = require('undetected-puppeteer');
(async () => {
const browser = await puppeteer.launch({ headless: false });
const page = await browser.newPage();
await page.goto('https://bot.sannysoft.com');
await page.waitForTimeout(5000);
await page.screenshot({ path: 'bot-test.png', fullPage: true });
await browser.close();
})();Features
- (hopefully) works exactly as Puppeteer does
- you can replace your use of Puppeteer with undetected-puppeteer
API
Same API as Puppeteer, with improved launch() method
