Sha256: 47ac06c10a3b5d477cb2fe655cb58ed016a92dd5915abb19aa9e14f96dd23bf6
Contents?: true
Size: 1.41 KB
Versions: 7
Compression:
Stored size: 1.41 KB
Contents
# encoding: utf-8 # # Licensed to the Software Freedom Conservancy (SFC) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The SFC licenses this file # to you 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. module Selenium module WebDriver class Alert def initialize(bridge) @bridge = bridge # fail fast if the alert doesn't exist bridge.getAlertText end def accept @bridge.acceptAlert end def dismiss @bridge.dismissAlert end def send_keys(keys) @bridge.setAlertValue keys end def text @bridge.getAlertText end def authenticate(username, password) @bridge.setAuthentication username: username, password: password accept end end # Alert end # WebDriver end # Selenium
Version data entries
7 entries across 7 versions & 2 rubygems