Skip to main content
Version: Next

PuppeteerNode.launch() method

Launches a browser instance with given arguments and options when specified.

When using with puppeteer-core, options.executablePath or options.channel must be provided.

Signature:

class PuppeteerNode {
launch(options?: PuppeteerLaunchOptions): Promise<Browser>;
}

Parameters

ParameterTypeDescription
optionsPuppeteerLaunchOptions(Optional) Options to configure launching behavior.

Returns:

Promise<Browser>

Remarks

Puppeteer can also be used to control the Chrome browser, but it works best with the version of Chromium downloaded by default by Puppeteer. There is no guarantee it will work with any other version. If Google Chrome (rather than Chromium) is preferred, a Chrome Canary or Dev Channel build is suggested. See this article for a description of the differences between Chromium and Chrome. This article describes some differences for Linux users.

Example

You can use options.ignoreDefaultArgs to filter out --mute-audio from default arguments:

const browser = await puppeteer.launch({
ignoreDefaultArgs: ['--mute-audio'],
});