Skip to main content
Version: 19.8.5

Puppeteer.connect() method

This method attaches Puppeteer to an existing browser instance.

Signature:

class Puppeteer {
connect(options: ConnectOptions): Promise<Browser>;
}

Parameters

ParameterTypeDescription
optionsConnectOptionsSet of configurable options to set on the browser.

Returns:

Promise<Browser>

Promise which resolves to browser instance.

Remarks