2022-07-05 13:41:43 +00:00
---
2023-09-13 13:47:55 +00:00
sidebar_label: BrowserEvent
2022-07-05 13:41:43 +00:00
---
2023-09-13 13:47:55 +00:00
# BrowserEvent enum
2022-07-05 13:41:43 +00:00
All the events a [browser instance ](./puppeteer.browser.md ) may emit.
2022-10-24 07:07:05 +00:00
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
2023-09-13 13:47:55 +00:00
export declare const enum BrowserEvent
2022-07-05 13:41:43 +00:00
```
## Enumeration Members
2024-03-20 15:03:14 +00:00
< table > < thead > < tr > < th >
Member
< / th > < th >
Value
< / th > < th >
Description
< / th > < / tr > < / thead >
< tbody > < tr > < td >
Disconnected
< / td > < td >
`"disconnected"`
< / td > < td >
Emitted when Puppeteer gets disconnected from the browser instance. This might happen because either:
- The browser closes/crashes or - [Browser.disconnect() ](./puppeteer.browser.disconnect.md ) was called.
< / td > < / tr >
< tr > < td >
TargetChanged
< / td > < td >
`"targetchanged"`
< / td > < td >
Emitted when the URL of a target changes. Contains a [Target ](./puppeteer.target.md ) instance.
2024-04-29 12:50:39 +00:00
**Remarks:**
Note that this includes target changes in all browser contexts.
2024-03-20 15:03:14 +00:00
< / td > < / tr >
< tr > < td >
TargetCreated
< / td > < td >
`"targetcreated"`
< / td > < td >
Emitted when a target is created, for example when a new page is opened by [window.open ](https://developer.mozilla.org/en-US/docs/Web/API/Window/open ) or by [browser.newPage ](./puppeteer.browser.newpage.md )
Contains a [Target ](./puppeteer.target.md ) instance.
2024-04-29 12:50:39 +00:00
**Remarks:**
Note that this includes target creations in all browser contexts.
2024-03-20 15:03:14 +00:00
< / td > < / tr >
< tr > < td >
TargetDestroyed
< / td > < td >
`"targetdestroyed"`
< / td > < td >
Emitted when a target is destroyed, for example when a page is closed. Contains a [Target ](./puppeteer.target.md ) instance.
2024-04-29 12:50:39 +00:00
**Remarks:**
Note that this includes target destructions in all browser contexts.
2024-03-20 15:03:14 +00:00
< / td > < / tr >
< / tbody > < / table >