module Selenium::WebDriver::Edge

Public Class Methods

driver_path=(path) click to toggle source
# File lib/selenium/webdriver/edge.rb, line 28
def self.driver_path=(path)
  Service.executable_path = path
end
path() click to toggle source
# File lib/selenium/webdriver/edge.rb, line 37
def self.path
  @path ||= nil
end
path=(path) click to toggle source
# File lib/selenium/webdriver/edge.rb, line 32
def self.path=(path)
  Platform.assert_executable path
  @path = path
end