UNPKG

webdriverio-automation

Version:

WebdriverIO-Automation android ios project

16 lines (13 loc) 297 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = dismissAlert; async function dismissAlert() { if (!this.activeDialog) { throw new Error('no such alert'); } await this.activeDialog.dismiss(); delete this.activeDialog; return null; }