Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/puppeteer-extra/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ yarn add [email protected] puppeteer-extra
// it augments the installed puppeteer with plugin functionality.
// Any number of plugins can be added through `puppeteer.use()`
const puppeteer = require('puppeteer-extra')
const { executablePath } = require('puppeteer') // puppeteer-core now requires executablePath as mandatory

// Add stealth plugin and use defaults (all tricks to hide puppeteer usage)
const StealthPlugin = require('puppeteer-extra-plugin-stealth')
Expand All @@ -32,7 +33,7 @@ const AdblockerPlugin = require('puppeteer-extra-plugin-adblocker')
puppeteer.use(AdblockerPlugin({ blockTrackers: true }))

// That's it, the rest is puppeteer usage as normal 😊
puppeteer.launch({ headless: true }).then(async browser => {
puppeteer.launch({ headless: true, executablePath: executablePath() }).then(async browser => {
const page = await browser.newPage()
await page.setViewport({ width: 800, height: 600 })

Expand Down