module Selenium::WebDriver

Constants

Dimension
Location
Point

Public Class Methods

for(*args) click to toggle source

Create a new Driver instance with the correct bridge for the given browser

@param browser [:ie, :internet_explorer, :remote, :chrome, :firefox, :ff, :android, :iphone, :opera, :phantomjs, :safari]

the driver type to use

@param *rest

arguments passed to Bridge.new

@return [Driver]

@see Selenium::WebDriver::Remote::Bridge @see Selenium::WebDriver::Firefox::Bridge @see Selenium::WebDriver::IE::Bridge @see Selenium::WebDriver::Chrome::Bridge @see Selenium::WebDriver::Android::Bridge @see Selenium::WebDriver::IPhone::Bridge @see Selenium::WebDriver::Opera::Bridge @see Selenium::WebDriver::PhantomJS::Bridge @see Selenium::WebDriver::Safari::Bridge

@example

WebDriver.for :firefox, :profile => "some-profile"
WebDriver.for :firefox, :profile => Profile.new
WebDriver.for :remote,  :url => "http://localhost:4444/wd/hub", :desired_capabilities => caps

One special argument is not passed on to the bridges, :listener. You can pass a listener for this option to get notified of WebDriver events. The passed object must respond to call or implement the methods from AbstractEventListener.

@see Selenium::WebDriver::Support::AbstractEventListener

# File lib/selenium/webdriver.rb, line 66
def self.for(*args)
  WebDriver::Driver.for(*args)
end
root() click to toggle source

@api private

# File lib/selenium/webdriver.rb, line 30
def self.root
  @root ||= File.expand_path("../..", __FILE__)
end