mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
a63b8305ac
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
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. |