Module: Selenium::WebDriver::Chrome

Defined in:
lib/selenium/webdriver/chrome.rb,
lib/selenium/webdriver/chrome/bridge.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

Modules: Bridge Classes: Driver, Options, Profile, Service

Class Method Summary collapse

Class Method Details

.driver_pathObject



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

def self.driver_path
  @driver_path ||= nil
end

.driver_path=(path) ⇒ Object



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

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

.pathObject



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

def self.path
  @path ||= nil
end

.path=(path) ⇒ Object



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

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