puppeteer-core
Version:
A high-level API to control headless Chrome over the DevTools Protocol
28 lines • 779 B
JavaScript
/**
* @license
* Copyright 2017 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.BidiDialog = void 0;
const Dialog_js_1 = require("../api/Dialog.js");
class BidiDialog extends Dialog_js_1.Dialog {
static from(prompt) {
return new BidiDialog(prompt);
}
#prompt;
constructor(prompt) {
super(prompt.info.type, prompt.info.message, prompt.info.defaultValue);
this.#prompt = prompt;
this.handled = prompt.handled;
}
async handle(options) {
await this.#prompt.handle({
accept: options.accept,
userText: options.text,
});
}
}
exports.BidiDialog = BidiDialog;
//# sourceMappingURL=Dialog.js.map
;