module Selenium::WebDriver::PhantomJS

Public Class Methods

path() click to toggle source
# File lib/selenium/webdriver/phantomjs.rb, line 16
def self.path
  @path ||= Platform.find_binary("phantomjs")
end
path=(path) click to toggle source
# File lib/selenium/webdriver/phantomjs.rb, line 11
def self.path=(path)
  Platform.assert_executable path
  @path = path
end