Module: Selenium::WebDriver::Chrome

Defined in:
lib/selenium/webdriver/chrome.rb,
lib/selenium/webdriver/chrome/driver.rb,
lib/selenium/webdriver/chrome/options.rb,
lib/selenium/webdriver/chrome/profile.rb,
lib/selenium/webdriver/chrome/service.rb

Defined Under Namespace

Classes: Driver, Options, Profile, Service

Class Method Summary collapse

Class Method Details

.driver_pathObject



35
36
37
# File 'lib/selenium/webdriver/chrome.rb', line 35

def self.driver_path
  @driver_path ||= nil
end

.driver_path=(path) ⇒ Object



30
31
32
33
# File 'lib/selenium/webdriver/chrome.rb', line 30

def self.driver_path=(path)
  Platform.assert_executable path
  @driver_path = path
end

.pathObject



44
45
46
# File 'lib/selenium/webdriver/chrome.rb', line 44

def self.path
  @path ||= nil
end

.path=(path) ⇒ Object



39
40
41
42
# File 'lib/selenium/webdriver/chrome.rb', line 39

def self.path=(path)
  Platform.assert_executable path
  @path = path
end