class Selenium::WebDriver::Edge::Driver
Public Class Methods
new(options: nil, service: nil, url: nil, **)
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, **) initialize_local_driver(options, service, url) do |caps, driver_url| super(caps: caps, url: driver_url, **) end end
Public Instance Methods
browser()
click to toggle source
# File lib/selenium/webdriver/edge/driver.rb, line 39 def browser :edge end
Private Instance Methods
devtools_address()
click to toggle source
# File lib/selenium/webdriver/edge/driver.rb, line 45 def devtools_address "http://#{capabilities['ms:edgeOptions']['debuggerAddress']}" end