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 |
|
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. Remarks: Note that this includes target changes in all browser contexts. |
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 |
|
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. |