2017-06-16 04:22:41 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2017 Google Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2020-04-21 09:22:20 +00:00
|
|
|
import {assert} from './helper';
|
2020-04-21 08:20:25 +00:00
|
|
|
import {CDPSession} from './Connection';
|
2020-04-16 13:59:28 +00:00
|
|
|
|
|
|
|
enum DialogType {
|
|
|
|
Alert = 'alert',
|
|
|
|
BeforeUnload = 'beforeunload',
|
|
|
|
Confirm = 'confirm',
|
|
|
|
Prompt = 'prompt'
|
|
|
|
}
|
2017-07-19 03:53:00 +00:00
|
|
|
|
2017-06-16 04:22:41 +00:00
|
|
|
class Dialog {
|
2020-04-16 13:59:28 +00:00
|
|
|
static Type = DialogType;
|
|
|
|
|
2020-04-21 08:20:25 +00:00
|
|
|
private _client: CDPSession;
|
2020-04-16 13:59:28 +00:00
|
|
|
private _type: DialogType;
|
|
|
|
private _message: string;
|
|
|
|
private _defaultValue: string;
|
|
|
|
private _handled = false;
|
|
|
|
|
2020-04-21 08:20:25 +00:00
|
|
|
constructor(client: CDPSession, type: DialogType, message: string, defaultValue = '') {
|
2017-06-21 20:51:06 +00:00
|
|
|
this._client = client;
|
2017-12-19 01:05:57 +00:00
|
|
|
this._type = type;
|
2017-06-21 20:51:06 +00:00
|
|
|
this._message = message;
|
2017-08-12 00:24:46 +00:00
|
|
|
this._defaultValue = defaultValue;
|
2017-06-21 20:51:06 +00:00
|
|
|
}
|
2017-06-16 04:22:41 +00:00
|
|
|
|
2020-04-16 13:59:28 +00:00
|
|
|
type(): DialogType {
|
2017-12-19 01:05:57 +00:00
|
|
|
return this._type;
|
|
|
|
}
|
|
|
|
|
2020-04-16 13:59:28 +00:00
|
|
|
message(): string {
|
2017-06-21 20:51:06 +00:00
|
|
|
return this._message;
|
|
|
|
}
|
2017-06-16 04:22:41 +00:00
|
|
|
|
2020-04-16 13:59:28 +00:00
|
|
|
defaultValue(): string {
|
2017-08-11 19:17:43 +00:00
|
|
|
return this._defaultValue;
|
|
|
|
}
|
|
|
|
|
2020-04-16 13:59:28 +00:00
|
|
|
async accept(promptText?: string): Promise<void> {
|
2018-05-31 23:53:51 +00:00
|
|
|
assert(!this._handled, 'Cannot accept dialog which is already handled!');
|
2017-06-21 20:51:06 +00:00
|
|
|
this._handled = true;
|
|
|
|
await this._client.send('Page.handleJavaScriptDialog', {
|
|
|
|
accept: true,
|
|
|
|
promptText: promptText
|
|
|
|
});
|
|
|
|
}
|
2017-06-16 04:22:41 +00:00
|
|
|
|
2020-04-16 13:59:28 +00:00
|
|
|
async dismiss(): Promise<void> {
|
2018-05-31 23:53:51 +00:00
|
|
|
assert(!this._handled, 'Cannot dismiss dialog which is already handled!');
|
2017-06-21 20:51:06 +00:00
|
|
|
this._handled = true;
|
|
|
|
await this._client.send('Page.handleJavaScriptDialog', {
|
|
|
|
accept: false
|
|
|
|
});
|
|
|
|
}
|
2017-06-16 04:22:41 +00:00
|
|
|
}
|
|
|
|
|
2020-04-16 13:59:28 +00:00
|
|
|
export = {Dialog};
|