puppeteer/website/versioned_docs/version-22.10.0/api/puppeteer.browserevent.md
release-please[bot] d963fcdd80
chore: release main (#12456)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
2024-05-24 07:26:52 +00:00

1.6 KiB

sidebar_label
BrowserEvent

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.