Class: Selenium::WebDriver::Edge::Driver Private
- Inherits:
-
Chromium::Driver
- Object
- WebDriver::Driver
- Chromium::Driver
- Selenium::WebDriver::Edge::Driver
- Includes:
- LocalDriver
- Defined in:
- lib/selenium/webdriver/edge/driver.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Driver implementation for Microsoft Edge.
Constant Summary
Constants inherited from Chromium::Driver
Instance Method Summary collapse
- #browser ⇒ Object private
-
#initialize(options: nil, service: nil, url: nil) ⇒ Driver
constructor
private
A new instance of Driver.
Methods included from LocalDriver
#initialize_local_driver, #process_options, #service_url
Constructor Details
#initialize(options: nil, service: nil, url: nil) ⇒ Driver
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of Driver.
33 34 35 36 37 |
# File 'lib/selenium/webdriver/edge/driver.rb', line 33 def initialize(options: nil, service: nil, url: nil, **) initialize_local_driver(, service, url) do |caps, driver_url| super(caps: caps, url: driver_url, **) end end |
Instance Method Details
#browser ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
39 40 41 |
# File 'lib/selenium/webdriver/edge/driver.rb', line 39 def browser :edge end |