Skip to main content
Deno 2 is finally here 🎉️
Learn more
Latest
enum BrowserContextEmittedEvents
import { BrowserContextEmittedEvents } from "https://deno.land/x/pptr@1.2.0/src/Browser.ts";

Members

TargetChanged = "targetchanged"

Emitted when the url of a target inside the browser context changes. Contains a Target instance.

TargetCreated = "targetcreated"

Emitted when a target is created within the browser context, for example when a new page is opened by window.open or by BrowserContext.newPage | browserContext.newPage

Contains a Target instance.

TargetDestroyed = "targetdestroyed"

Emitted when a target is destroyed within the browser context, for example when a page is closed. Contains a Target instance.