Extremely Popular
Go to Latest
interface puppeteer.Page.JavascriptDialogOpeningEvent
import { type puppeteer } from "https://dotland.deno.dev/x/fresh@1.0.2/tests/deps.ts";
const { JavascriptDialogOpeningEvent } = puppeteer.Page;

Fired when a JavaScript initiated dialog (alert, confirm, prompt, or onbeforeunload) is about to open.

Properties

url: string

Frame url.

message: string

Message that will be displayed by the dialog.

Dialog type.

hasBrowserHandler: boolean

True iff browser is capable showing or acting on the given dialog. When browser has no dialog handler for given target, calling alert while Page domain is engaged will stall the page execution. Execution can be resumed via calling Page.handleJavaScriptDialog.

optional
defaultPrompt: string

Default dialog prompt.