This initialization works well even if we are not passing executablePath
in LaunchOptions
in puppeteer.launch()
const browser = await puppeteer.launch();
What is default value of executablePath
?
This initialization works well even if we are not passing executablePath
in LaunchOptions
in puppeteer.launch()
const browser = await puppeteer.launch();
What is default value of executablePath
?
The path will change based on the platform that you install puppeteer on.
https://github.com/puppeteer/puppeteer/blob/main/packages/puppeteer/src/node/install.ts
has methods for finding that path.