puppeteer/docs/api/puppeteer.browserevent.md
dependabot[bot] 93e9acc410
chore(deps-dev): Bump the dev-dependencies group with 3 updates (#12101)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Nikolay Vitkov <nvitkov@chromium.org>
2024-03-20 15:03:14 +00:00

1.3 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.

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.

TargetDestroyed

"targetdestroyed"

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