blob: c7fc301b8bb4b42a134ccd7de1666eaf85eaf193 [file] [log] [blame]
// 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.
import '../alert.dart';
import '../common.dart';
import '../web_driver.dart';
class W3cAlert implements Alert {
final WebDriver _driver;
final Resolver _resolver;
W3cAlert(this._driver) : _resolver = new Resolver(_driver, 'alert');
@override
String get text => _resolver.get('text');
@override
void accept() => _resolver.post('accept', {});
@override
void dismiss() => _resolver.post('dismiss', {});
// This does NOT match the W3C spec, which specifies 'value' not 'text'.
// But this is what geckodriver uses.
@override
void sendKeys(String keysToSend) =>
_resolver.post('text', {'text': keysToSend});
@override
String toString() => '$_driver.switchTo.alert[$text]';
}