Skip to main content
Version: 22.14.0

BrowserEvent enum

All the events a browser instance may emit.

Signature:

export declare const enum BrowserEvent

Enumeration Members

Member

Value

Description

Disconnected

"disconnected"

Emitted when Puppeteer gets disconnected from the browser instance. This might happen because either:

TargetChanged

"targetchanged"

Emitted when the URL of a target changes. Contains a Target instance.

Remarks:

Note that this includes target changes in all browser contexts.

TargetCreated

"targetcreated"

Emitted when a target is created, for example when a new page is opened by window.open or by browser.newPage

Contains a Target instance.

Remarks:

Note that this includes target creations in all browser contexts.

TargetDestroyed

"targetdestroyed"

Emitted when a target is destroyed, for example when a page is closed. Contains a Target instance.

Remarks:

Note that this includes target destructions in all browser contexts.