class Selenium::WebDriver::Edge::Driver

Driver implementation for Microsoft Edge. @api private

Public Class Methods

new(options: nil, service: nil, url: nil, **opts) click to toggle source
Calls superclass method Selenium::WebDriver::Driver::new
# File lib/selenium/webdriver/edge/driver.rb, line 33
def initialize(options: nil, service: nil, url: nil, **opts)
  caps, url = initialize_local_driver(options, service, url)
  super(caps: caps, url: url, **opts)
end

Public Instance Methods

browser() click to toggle source
# File lib/selenium/webdriver/edge/driver.rb, line 38
def browser
  :edge
end

Private Instance Methods

devtools_address() click to toggle source
# File lib/selenium/webdriver/edge/driver.rb, line 44
def devtools_address
  "http://#{capabilities['ms:edgeOptions']['debuggerAddress']}"
end