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



33
34
35
# File 'lib/selenium/webdriver/chrome.rb', line 33

def self.driver_path
  @driver_path ||= nil
end

.driver_path=(path) ⇒ Object



28
29
30
31
# File 'lib/selenium/webdriver/chrome.rb', line 28

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

.pathObject



42
43
44
# File 'lib/selenium/webdriver/chrome.rb', line 42

def self.path
  @path ||= nil
end

.path=(path) ⇒ Object



37
38
39
40
# File 'lib/selenium/webdriver/chrome.rb', line 37

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