0
0
mirror of https://github.com/puppeteer/puppeteer synced 2024-06-14 14:02:48 +00:00
puppeteer/docs/api/puppeteer.browseremittedevents.md
jrandolf f07ad2c661
fix: update documentation on configuring puppeteer ()
This PR updates the docs regarding configuring puppeteer. In addition,
some changes have been made to the documentation generator to show
default values on the documentation site.

Also fixes: https://github.com/puppeteer/puppeteer/pull/9144
2022-10-24 09:07:05 +02:00

2.2 KiB

sidebar_label
BrowserEmittedEvents

BrowserEmittedEvents enum

All the events a browser instance may emit.

Signature:

export declare const enum BrowserEmittedEvents

Enumeration Members

Member Value Description
Disconnected "disconnected"

Emitted when Puppeteer gets disconnected from the Chromium instance. This might happen because of one of the following:

- Chromium is closed or crashed

- The browser.disconnect method was called.

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.