mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
93e9acc410
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>
1.3 KiB
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 |
|
Emitted when Puppeteer gets disconnected from the browser instance. This might happen because either:
|
TargetChanged |
|
Emitted when the URL of a target changes. Contains a Target instance. |
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 |
|
Emitted when a target is destroyed, for example when a page is closed. Contains a Target instance. |