Skip to main content
Module

x/puppeteer/mod.ts>BrowserContextEmittedEvents

A port of puppeteer running on Deno
Latest
enum BrowserContextEmittedEvents
import { BrowserContextEmittedEvents } from "https://deno.land/x/puppeteer@16.2.0/mod.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.