UNPKG

devtools

Version:

A Chrome DevTools protocol binding that maps WebDriver commands into Chrome DevTools commands using Puppeteer

11 lines 493 B
import type DevToolsDriver from '../devtoolsdriver.js'; /** * The Dismiss Alert command dismisses a simple dialog if present, otherwise error. * A request to dismiss an alert user prompt, which may not necessarily have a dismiss button, * has the same effect as accepting it. * * @alias browser.dismissAlert * @see https://w3c.github.io/webdriver/#dfn-dismiss-alert */ export default function dismissAlert(this: DevToolsDriver): Promise<null>; //# sourceMappingURL=dismissAlert.d.ts.map