Path: blob/trunk/rb/lib/selenium/webdriver/ie/driver.rb
1865 views
# frozen_string_literal: true12# Licensed to the Software Freedom Conservancy (SFC) under one3# or more contributor license agreements. See the NOTICE file4# distributed with this work for additional information5# regarding copyright ownership. The SFC licenses this file6# to you under the Apache License, Version 2.0 (the7# "License"); you may not use this file except in compliance8# with the License. You may obtain a copy of the License at9#10# http://www.apache.org/licenses/LICENSE-2.011#12# Unless required by applicable law or agreed to in writing,13# software distributed under the License is distributed on an14# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY15# KIND, either express or implied. See the License for the16# specific language governing permissions and limitations17# under the License.1819module Selenium20module WebDriver21module IE22#23# Driver implementation for Internet Explorer supporting24# both OSS and W3C dialects of JSON wire protocol.25# @api private26#2728class Driver < WebDriver::Driver29EXTENSIONS = [].freeze3031include LocalDriver3233def initialize(options: nil, service: nil, url: nil, **)34caps, url = initialize_local_driver(options, service, url)35super(caps: caps, url: url, **)36end3738def browser39:internet_explorer40end41end # Driver42end # IE43end # WebDriver44end # Selenium454647