How to use the defaultArgs function from puppeteer
Find comprehensive JavaScript puppeteer.defaultArgs code examples handpicked from public code repositorys.
616 617 618 619 620 621 622 623 624 625
}); }else{ // OPTION 2: use local machine browsers var args = puppeteer.defaultArgs(); args = puppeteer.defaultArgs().filter(arg => arg !== '--disable-dev-shm-usage') args.push( "--disable-setuid-sandbox", '--no-sandbox',
6
32
2
+ 11 other calls in file
14 15 16 17 18 19 20 21 22 23
const browser = await puppeteer.launch({ executablePath: process.env.CHROMIUM_PATH || CHROMIUM_DEFAULT_PATH, dumpio: true, defaultViewport: null, ignoreDefaultArgs: true, args: puppeteer.defaultArgs({ headless: false, args: ['--no-default-browser-check', `--custom-devtools-frontend=http://localhost:9227/devtools/`], userDataDir: 'debugging-user-data-dir' }).filter(x => !x.startsWith('--enable-automation'))
0
0
0
puppeteer.launch is the most popular function in puppeteer (5121 examples)