module Selenium::WebDriver::Chrome

Public Class Methods

path() click to toggle source
# File lib/selenium/webdriver/chrome.rb, line 36
def self.path
  @path ||= nil
end
path=(path) click to toggle source
# File lib/selenium/webdriver/chrome.rb, line 31
def self.path=(path)
  Platform.assert_executable path
  @path = path
end