module Selenium::WebDriver::IE

Public Class Methods

driver_path() click to toggle source
# File lib/selenium/webdriver/ie.rb, line 30
def self.driver_path
  @driver_path ||= nil
end
driver_path=(path) click to toggle source
# File lib/selenium/webdriver/ie.rb, line 25
def self.driver_path=(path)
  Platform.assert_executable path
  @driver_path = path
end