2009-12-20 16:22:47 +01:00
|
|
|
require 'timeout'
|
2009-11-16 22:02:16 +01:00
|
|
|
require 'nokogiri'
|
2010-08-14 18:35:46 +02:00
|
|
|
require 'xpath'
|
2011-12-29 18:51:22 +01:00
|
|
|
|
2009-11-16 22:02:16 +01:00
|
|
|
module Capybara
|
|
|
|
class CapybaraError < StandardError; end
|
|
|
|
class DriverNotFoundError < CapybaraError; end
|
2011-08-15 15:33:23 +02:00
|
|
|
class FrozenInTime < CapybaraError; end
|
2009-11-16 22:02:16 +01:00
|
|
|
class ElementNotFound < CapybaraError; end
|
2012-07-09 13:21:44 +02:00
|
|
|
class Ambiguous < ElementNotFound; end
|
2011-08-12 14:38:42 +02:00
|
|
|
class ExpectationNotMet < ElementNotFound; end
|
2011-04-11 09:09:54 +01:00
|
|
|
class FileNotFound < CapybaraError; end
|
2010-02-19 12:37:46 -08:00
|
|
|
class UnselectNotAllowed < CapybaraError; end
|
2009-12-12 13:33:00 +01:00
|
|
|
class NotSupportedByDriverError < CapybaraError; end
|
2009-12-31 13:51:22 -05:00
|
|
|
class TimeoutError < CapybaraError; end
|
2010-01-11 14:45:36 +01:00
|
|
|
class LocateHiddenElementError < CapybaraError; end
|
2010-01-11 21:30:58 +01:00
|
|
|
class InfiniteRedirectError < TimeoutError; end
|
2010-06-27 02:36:25 +02:00
|
|
|
|
2009-11-16 22:02:16 +01:00
|
|
|
class << self
|
2012-07-04 16:42:09 +02:00
|
|
|
attr_accessor :asset_root, :app_host, :run_server, :default_host, :always_include_port
|
2012-01-09 00:25:41 +01:00
|
|
|
attr_accessor :server_host, :server_port
|
2012-01-31 16:28:28 +01:00
|
|
|
attr_accessor :default_selector, :default_wait_time, :ignore_hidden_elements
|
2011-07-13 15:39:17 +02:00
|
|
|
attr_accessor :save_and_open_page_path, :automatic_reload
|
2012-07-12 17:03:28 +02:00
|
|
|
attr_writer :default_driver, :current_driver, :javascript_driver, :session_name
|
2011-12-30 17:54:44 +01:00
|
|
|
attr_accessor :app
|
2009-12-03 18:50:03 +01:00
|
|
|
|
2010-07-11 17:26:08 +02:00
|
|
|
##
|
|
|
|
#
|
2010-07-14 23:59:23 +02:00
|
|
|
# Configure Capybara to suit your needs.
|
2010-07-11 17:26:08 +02:00
|
|
|
#
|
|
|
|
# Capybara.configure do |config|
|
|
|
|
# config.run_server = false
|
|
|
|
# config.app_host = 'http://www.google.com'
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# === Configurable options
|
|
|
|
#
|
|
|
|
# [asset_root = String] Where static assets are located, used by save_and_open_page
|
|
|
|
# [app_host = String] The default host to use when giving a relative URL to visit
|
2012-07-04 16:42:09 +02:00
|
|
|
# [always_include_port = Boolean] Whether the Rack server's port should automatically be inserted into every visited URL (Default: false)
|
2010-07-11 17:26:08 +02:00
|
|
|
# [run_server = Boolean] Whether to start a Rack server for the given Rack app (Default: true)
|
|
|
|
# [default_selector = :css/:xpath] Methods which take a selector use the given type by default (Default: CSS)
|
2010-07-14 23:59:23 +02:00
|
|
|
# [default_wait_time = Integer] The number of seconds to wait for asynchronous processes to finish (Default: 2)
|
2010-07-11 17:26:08 +02:00
|
|
|
# [ignore_hidden_elements = Boolean] Whether to ignore hidden elements on the page (Default: false)
|
2011-08-19 20:43:24 +03:00
|
|
|
# [automatic_reload = Boolean] Whether to automatically reload elements as Capybara is waiting (Default: true)
|
|
|
|
# [save_and_open_page_path = String] Where to put pages saved through save_and_open_page (Default: Dir.pwd)
|
2010-07-11 17:26:08 +02:00
|
|
|
#
|
|
|
|
# === DSL Options
|
|
|
|
#
|
|
|
|
# when using capybara/dsl, the following options are also available:
|
|
|
|
#
|
|
|
|
# [default_driver = Symbol] The name of the driver to use by default. (Default: :rack_test)
|
|
|
|
# [javascript_driver = Symbol] The name of a driver to use for JavaScript enabled tests. (Default: :selenium)
|
|
|
|
#
|
2010-07-11 13:13:24 +02:00
|
|
|
def configure
|
|
|
|
yield self
|
|
|
|
end
|
2010-07-29 15:20:11 +02:00
|
|
|
|
|
|
|
##
|
|
|
|
#
|
|
|
|
# Register a new driver for Capybara.
|
|
|
|
#
|
|
|
|
# Capybara.register_driver :rack_test do |app|
|
|
|
|
# Capybara::Driver::RackTest.new(app)
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# @param [Symbol] name The name of the new driver
|
|
|
|
# @yield [app] This block takes a rack app and returns a Capybara driver
|
|
|
|
# @yieldparam [<Rack>] app The rack application that this driver runs agains. May be nil.
|
|
|
|
# @yieldreturn [Capybara::Driver::Base] A Capybara driver instance
|
|
|
|
#
|
|
|
|
def register_driver(name, &block)
|
|
|
|
drivers[name] = block
|
|
|
|
end
|
|
|
|
|
2010-10-22 17:03:51 +02:00
|
|
|
##
|
|
|
|
#
|
|
|
|
# Add a new selector to Capybara. Selectors can be used by various methods in Capybara
|
|
|
|
# to find certain elements on the page in a more convenient way. For example adding a
|
|
|
|
# selector to find certain table rows might look like this:
|
|
|
|
#
|
|
|
|
# Capybara.add_selector(:row) do
|
|
|
|
# xpath { |num| ".//tbody/tr[#{num}]" }
|
|
|
|
# end
|
|
|
|
#
|
2011-01-19 06:52:00 -05:00
|
|
|
# This makes it possible to use this selector in a variety of ways:
|
2010-10-22 17:03:51 +02:00
|
|
|
#
|
|
|
|
# find(:row, 3)
|
|
|
|
# page.find('table#myTable').find(:row, 3).text
|
|
|
|
# page.find('table#myTable').has_selector?(:row, 3)
|
|
|
|
# within(:row, 3) { page.should have_content('$100.000') }
|
|
|
|
#
|
|
|
|
# It might be convenient to specify that the selector is automatically chosen for certain
|
2011-05-10 14:13:05 -07:00
|
|
|
# values. This way you don't have to explicitly specify that you are looking for a row, or
|
2010-10-22 17:03:51 +02:00
|
|
|
# an id. Let's say we want Capybara to treat any Symbols sent into methods like find to be
|
|
|
|
# treated as though they were element ids. We could achieve this like so:
|
|
|
|
#
|
|
|
|
# Capybara.add_selector(:id) do
|
|
|
|
# xpath { |id| XPath.descendant[XPath.attr(:id) == id.to_s] }
|
|
|
|
# match { |value| value.is_a?(Symbol) }
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# Now we can retrieve elements by id like this:
|
|
|
|
#
|
|
|
|
# find(:post_123)
|
|
|
|
#
|
|
|
|
# Note that this particular selector already ships with Capybara.
|
|
|
|
#
|
|
|
|
# @param [Symbol] name The name of the selector to add
|
|
|
|
# @yield A block executed in the context of the new {Capybara::Selector}
|
|
|
|
#
|
2010-10-22 13:29:08 +02:00
|
|
|
def add_selector(name, &block)
|
|
|
|
Capybara::Selector.add(name, &block)
|
|
|
|
end
|
|
|
|
|
2010-07-29 15:20:11 +02:00
|
|
|
def drivers
|
|
|
|
@drivers ||= {}
|
|
|
|
end
|
2010-09-18 18:51:33 -05:00
|
|
|
|
2010-10-27 19:53:59 -07:00
|
|
|
##
|
|
|
|
#
|
|
|
|
# Register a proc that Capybara will call to run the Rack application.
|
|
|
|
#
|
|
|
|
# Capybara.server do |app, port|
|
|
|
|
# require 'rack/handler/mongrel'
|
|
|
|
# Rack::Handler::Mongrel.run(app, :Port => port)
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# By default, Capybara will try to run thin, falling back to webrick.
|
|
|
|
#
|
|
|
|
# @yield [app, port] This block recieves a rack app and port and should run a Rack handler
|
|
|
|
#
|
|
|
|
def server(&block)
|
|
|
|
if block_given?
|
|
|
|
@server = block
|
|
|
|
else
|
|
|
|
@server
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-11-21 14:07:56 +01:00
|
|
|
##
|
|
|
|
#
|
|
|
|
# Wraps the given string, which should contain an HTML document or fragment
|
2010-11-21 14:37:36 +01:00
|
|
|
# in a {Capybara::Node::Simple} which exposes all {Capybara::Node::Matchers} and
|
2010-11-21 14:07:56 +01:00
|
|
|
# {Capybara::Node::Finders}. This allows you to query any string containing
|
|
|
|
# HTML in the exact same way you would query the current document in a Capybara
|
|
|
|
# session. For example:
|
|
|
|
#
|
|
|
|
# node = Capybara.string <<-HTML
|
|
|
|
# <ul>
|
|
|
|
# <li id="home">Home</li>
|
|
|
|
# <li id="projects">Projects</li>
|
|
|
|
# </ul>
|
|
|
|
# HTML
|
|
|
|
#
|
|
|
|
# node.find('#projects').text # => 'Projects'
|
|
|
|
# node.has_selector?('li#home', :text => 'Home')
|
|
|
|
# node.has_selector?(:projects)
|
|
|
|
# node.find('ul').find('li').text # => 'Home'
|
|
|
|
#
|
|
|
|
# @param [String] html An html fragment or document
|
2010-11-21 14:37:36 +01:00
|
|
|
# @return [Capybara::Node::Simple] A node which has Capybara's finders and matchers
|
2010-11-21 14:07:56 +01:00
|
|
|
#
|
|
|
|
def string(html)
|
2010-11-21 14:37:36 +01:00
|
|
|
Capybara::Node::Simple.new(html)
|
2010-11-21 14:07:56 +01:00
|
|
|
end
|
|
|
|
|
2010-11-21 14:08:07 +01:00
|
|
|
##
|
|
|
|
#
|
|
|
|
# Runs Capybara's default server for the given application and port
|
|
|
|
# under most circumstances you should not have to call this method
|
|
|
|
# manually.
|
|
|
|
#
|
|
|
|
# @param [Rack Application] app The rack application to run
|
2010-11-21 14:52:52 +01:00
|
|
|
# @param [Fixnum] port The port to run the application on
|
2010-11-21 14:08:07 +01:00
|
|
|
#
|
2010-10-27 19:53:59 -07:00
|
|
|
def run_default_server(app, port)
|
|
|
|
begin
|
|
|
|
require 'rack/handler/thin'
|
|
|
|
Thin::Logging.silent = true
|
|
|
|
Rack::Handler::Thin.run(app, :Port => port)
|
|
|
|
rescue LoadError
|
|
|
|
require 'rack/handler/webrick'
|
|
|
|
Rack::Handler::WEBrick.run(app, :Port => port, :AccessLog => [], :Logger => WEBrick::Log::new(nil, 0))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-12-30 17:54:44 +01:00
|
|
|
##
|
|
|
|
#
|
|
|
|
# @return [Symbol] The name of the driver to use by default
|
|
|
|
#
|
|
|
|
def default_driver
|
|
|
|
@default_driver || :rack_test
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
#
|
|
|
|
# @return [Symbol] The name of the driver currently in use
|
|
|
|
#
|
|
|
|
def current_driver
|
|
|
|
@current_driver || default_driver
|
|
|
|
end
|
|
|
|
alias_method :mode, :current_driver
|
|
|
|
|
|
|
|
##
|
|
|
|
#
|
|
|
|
# @return [Symbol] The name of the driver used when JavaScript is needed
|
|
|
|
#
|
|
|
|
def javascript_driver
|
|
|
|
@javascript_driver || :selenium
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
#
|
|
|
|
# Use the default driver as the current driver
|
|
|
|
#
|
|
|
|
def use_default_driver
|
|
|
|
@current_driver = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
#
|
|
|
|
# Yield a block using a specific driver
|
|
|
|
#
|
|
|
|
def using_driver(driver)
|
|
|
|
previous_driver = Capybara.current_driver
|
|
|
|
Capybara.current_driver = driver
|
|
|
|
yield
|
|
|
|
ensure
|
|
|
|
@current_driver = previous_driver
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
#
|
|
|
|
# Yield a block using a specific wait time
|
|
|
|
#
|
|
|
|
def using_wait_time(seconds)
|
|
|
|
previous_wait_time = Capybara.default_wait_time
|
|
|
|
Capybara.default_wait_time = seconds
|
|
|
|
yield
|
|
|
|
ensure
|
|
|
|
Capybara.default_wait_time = previous_wait_time
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
#
|
|
|
|
# The current Capybara::Session based on what is set as Capybara.app and Capybara.current_driver
|
|
|
|
#
|
|
|
|
# @return [Capybara::Session] The currently used session
|
|
|
|
#
|
|
|
|
def current_session
|
|
|
|
session_pool["#{current_driver}:#{session_name}:#{app.object_id}"] ||= Capybara::Session.new(current_driver, app)
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
#
|
|
|
|
# Reset sessions, cleaning out the pool of sessions. This will remove any session information such
|
|
|
|
# as cookies.
|
|
|
|
#
|
|
|
|
def reset_sessions!
|
|
|
|
session_pool.each { |mode, session| session.reset! }
|
|
|
|
end
|
|
|
|
alias_method :reset!, :reset_sessions!
|
|
|
|
|
|
|
|
##
|
|
|
|
#
|
|
|
|
# The current session name.
|
|
|
|
#
|
|
|
|
# @return [Symbol] The name of the currently used session.
|
|
|
|
#
|
|
|
|
def session_name
|
|
|
|
@session_name ||= :default
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
#
|
|
|
|
# Yield a block using a specific session name.
|
|
|
|
#
|
|
|
|
def using_session(name)
|
|
|
|
self.session_name = name
|
|
|
|
yield
|
|
|
|
ensure
|
|
|
|
self.session_name = :default
|
|
|
|
end
|
|
|
|
|
|
|
|
def included(base)
|
|
|
|
base.send(:include, Capybara::DSL)
|
|
|
|
warn "`include Capybara` is deprecated. Please use `include Capybara::DSL` instead."
|
|
|
|
end
|
|
|
|
|
2010-09-18 18:51:33 -05:00
|
|
|
def deprecate(method, alternate_method)
|
|
|
|
warn "DEPRECATED: ##{method} is deprecated, please use ##{alternate_method} instead"
|
|
|
|
end
|
2011-12-30 17:54:44 +01:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def session_pool
|
|
|
|
@session_pool ||= {}
|
|
|
|
end
|
2009-11-16 22:02:16 +01:00
|
|
|
end
|
2010-06-27 02:36:25 +02:00
|
|
|
|
2012-01-08 22:51:25 +09:00
|
|
|
self.default_driver = nil
|
2012-01-08 22:51:44 +09:00
|
|
|
self.current_driver = nil
|
|
|
|
|
2011-12-30 17:54:44 +01:00
|
|
|
autoload :DSL, 'capybara/dsl'
|
2009-12-24 00:41:34 -05:00
|
|
|
autoload :Server, 'capybara/server'
|
|
|
|
autoload :Session, 'capybara/session'
|
2010-08-27 20:37:39 +02:00
|
|
|
autoload :Selector, 'capybara/selector'
|
2012-01-02 18:11:07 +01:00
|
|
|
autoload :Query, 'capybara/query'
|
2012-06-08 16:47:01 +02:00
|
|
|
autoload :Result, 'capybara/result'
|
2010-04-09 17:08:06 +02:00
|
|
|
autoload :VERSION, 'capybara/version'
|
2010-06-27 02:36:25 +02:00
|
|
|
|
2010-11-21 14:37:36 +01:00
|
|
|
module Node
|
|
|
|
autoload :Base, 'capybara/node/base'
|
|
|
|
autoload :Simple, 'capybara/node/simple'
|
|
|
|
autoload :Element, 'capybara/node/element'
|
|
|
|
autoload :Document, 'capybara/node/document'
|
|
|
|
autoload :Finders, 'capybara/node/finders'
|
|
|
|
autoload :Matchers, 'capybara/node/matchers'
|
|
|
|
autoload :Actions, 'capybara/node/actions'
|
|
|
|
end
|
|
|
|
|
2009-11-16 22:02:16 +01:00
|
|
|
module Driver
|
2009-12-09 21:43:40 +01:00
|
|
|
autoload :Base, 'capybara/driver/base'
|
2010-07-09 20:08:33 +02:00
|
|
|
autoload :Node, 'capybara/driver/node'
|
2011-04-11 07:21:49 +01:00
|
|
|
|
|
|
|
class Selenium
|
|
|
|
def initialize(*args)
|
|
|
|
raise "Capybara::Driver::Selenium has been renamed to Capybara::Selenium::Driver"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class RackTest
|
|
|
|
def initialize(*args)
|
|
|
|
raise "Capybara::Driver::RackTest has been renamed to Capybara::RackTest::Driver"
|
|
|
|
end
|
|
|
|
end
|
2009-11-16 22:02:16 +01:00
|
|
|
end
|
2011-04-05 17:42:12 +02:00
|
|
|
|
|
|
|
module RackTest
|
|
|
|
autoload :Driver, 'capybara/rack_test/driver'
|
|
|
|
autoload :Node, 'capybara/rack_test/node'
|
|
|
|
autoload :Form, 'capybara/rack_test/form'
|
|
|
|
autoload :Browser, 'capybara/rack_test/browser'
|
|
|
|
end
|
2011-04-11 06:24:00 +01:00
|
|
|
|
|
|
|
module Selenium
|
|
|
|
autoload :Node, 'capybara/selenium/node'
|
|
|
|
autoload :Driver, 'capybara/selenium/driver'
|
|
|
|
end
|
2009-11-16 22:02:16 +01:00
|
|
|
end
|
2010-01-17 17:40:26 +01:00
|
|
|
|
2010-07-11 13:15:48 +02:00
|
|
|
Capybara.configure do |config|
|
2012-07-04 16:42:09 +02:00
|
|
|
config.always_include_port = false
|
2010-07-11 13:15:48 +02:00
|
|
|
config.run_server = true
|
2010-10-27 19:53:59 -07:00
|
|
|
config.server {|app, port| Capybara.run_default_server(app, port)}
|
2010-07-11 13:15:48 +02:00
|
|
|
config.default_selector = :css
|
|
|
|
config.default_wait_time = 2
|
|
|
|
config.ignore_hidden_elements = false
|
2011-03-25 09:01:59 +00:00
|
|
|
config.default_host = "http://www.example.com"
|
2011-07-13 15:39:17 +02:00
|
|
|
config.automatic_reload = true
|
2010-07-11 13:15:48 +02:00
|
|
|
end
|
2010-08-18 03:22:54 +02:00
|
|
|
|
2010-07-29 15:20:11 +02:00
|
|
|
Capybara.register_driver :rack_test do |app|
|
2011-04-05 17:42:12 +02:00
|
|
|
Capybara::RackTest::Driver.new(app)
|
2010-07-29 15:20:11 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
Capybara.register_driver :selenium do |app|
|
2011-04-11 06:24:00 +01:00
|
|
|
Capybara::Selenium::Driver.new(app)
|
2010-07-29 15:20:11 +02:00
|
|
|
end
|