2009-12-20 10:22:47 -05:00
|
|
|
require 'timeout'
|
2009-11-16 16:02:16 -05:00
|
|
|
require 'nokogiri'
|
2010-08-14 12:35:46 -04:00
|
|
|
require 'xpath'
|
2009-11-16 16:02:16 -05:00
|
|
|
|
|
|
|
module Capybara
|
|
|
|
class CapybaraError < StandardError; end
|
|
|
|
class DriverNotFoundError < CapybaraError; end
|
|
|
|
class ElementNotFound < CapybaraError; end
|
2010-02-19 15:37:46 -05:00
|
|
|
class UnselectNotAllowed < CapybaraError; end
|
2009-12-12 07:33:00 -05:00
|
|
|
class NotSupportedByDriverError < CapybaraError; end
|
2009-12-31 13:51:22 -05:00
|
|
|
class TimeoutError < CapybaraError; end
|
2010-01-11 08:45:36 -05:00
|
|
|
class LocateHiddenElementError < CapybaraError; end
|
2010-01-11 15:30:58 -05:00
|
|
|
class InfiniteRedirectError < TimeoutError; end
|
2010-06-26 20:36:25 -04:00
|
|
|
|
2009-11-16 16:02:16 -05:00
|
|
|
class << self
|
2010-07-11 07:11:30 -04:00
|
|
|
attr_accessor :asset_root, :app_host, :run_server, :default_host
|
2010-09-02 09:03:49 -04:00
|
|
|
attr_accessor :server_port
|
2010-01-30 13:07:54 -05:00
|
|
|
attr_accessor :default_selector, :default_wait_time, :ignore_hidden_elements
|
2010-06-26 20:36:25 -04:00
|
|
|
attr_accessor :save_and_open_page_path
|
2009-12-03 12:50:03 -05:00
|
|
|
|
2010-07-11 11:26:08 -04:00
|
|
|
##
|
|
|
|
#
|
2010-07-14 17:59:23 -04:00
|
|
|
# Configure Capybara to suit your needs.
|
2010-07-11 11:26:08 -04: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
|
|
|
|
# [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 17:59:23 -04:00
|
|
|
# [default_wait_time = Integer] The number of seconds to wait for asynchronous processes to finish (Default: 2)
|
2010-07-11 11:26:08 -04:00
|
|
|
# [ignore_hidden_elements = Boolean] Whether to ignore hidden elements on the page (Default: false)
|
|
|
|
#
|
|
|
|
# === 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 07:13:24 -04:00
|
|
|
def configure
|
|
|
|
yield self
|
|
|
|
end
|
2010-07-29 09:20:11 -04: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 11:03:51 -04: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
|
|
|
|
#
|
|
|
|
# This makes it possible to use this selector in a cariety of ways:
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
# values. This way you don't have to explicitely specify that you are looking for a row, or
|
|
|
|
# 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 07:29:08 -04:00
|
|
|
def add_selector(name, &block)
|
|
|
|
Capybara::Selector.add(name, &block)
|
|
|
|
end
|
|
|
|
|
2010-07-29 09:20:11 -04:00
|
|
|
def drivers
|
|
|
|
@drivers ||= {}
|
|
|
|
end
|
2010-09-18 19:51:33 -04:00
|
|
|
|
2010-10-27 22:53:59 -04: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 08:07:56 -05:00
|
|
|
##
|
|
|
|
#
|
|
|
|
# Wraps the given string, which should contain an HTML document or fragment
|
|
|
|
# in a {Capybara::StringNode} which exposes all {Capybara::Node::Matchers} and
|
|
|
|
# {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
|
|
|
|
# @return [Capybara::StringNode] A node which has Capybara's finders and matchers
|
|
|
|
#
|
|
|
|
def string(html)
|
|
|
|
StringNode.new(html)
|
|
|
|
end
|
|
|
|
|
2010-10-27 22:53:59 -04: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
|
|
|
|
|
2010-09-18 19:51:33 -04:00
|
|
|
def deprecate(method, alternate_method)
|
|
|
|
warn "DEPRECATED: ##{method} is deprecated, please use ##{alternate_method} instead"
|
|
|
|
end
|
2009-11-16 16:02:16 -05:00
|
|
|
end
|
2010-06-26 20:36:25 -04:00
|
|
|
|
2009-12-24 00:41:34 -05:00
|
|
|
autoload :Server, 'capybara/server'
|
|
|
|
autoload :Session, 'capybara/session'
|
2010-07-09 19:19:09 -04:00
|
|
|
autoload :Node, 'capybara/node'
|
2010-11-21 08:07:56 -05:00
|
|
|
autoload :StringNode, 'capybara/util/string'
|
2010-07-09 21:07:31 -04:00
|
|
|
autoload :Document, 'capybara/node'
|
|
|
|
autoload :Element, 'capybara/node'
|
2010-08-27 14:37:39 -04:00
|
|
|
autoload :Selector, 'capybara/selector'
|
2010-04-09 11:08:06 -04:00
|
|
|
autoload :VERSION, 'capybara/version'
|
2010-06-26 20:36:25 -04:00
|
|
|
|
2009-11-16 16:02:16 -05:00
|
|
|
module Driver
|
2009-12-09 15:43:40 -05:00
|
|
|
autoload :Base, 'capybara/driver/base'
|
2010-07-09 14:08:33 -04:00
|
|
|
autoload :Node, 'capybara/driver/node'
|
2009-11-16 16:02:16 -05:00
|
|
|
autoload :RackTest, 'capybara/driver/rack_test_driver'
|
2009-12-16 15:42:37 -05:00
|
|
|
autoload :Celerity, 'capybara/driver/celerity_driver'
|
2009-12-18 11:40:51 -05:00
|
|
|
autoload :Culerity, 'capybara/driver/culerity_driver'
|
2009-11-16 16:02:16 -05:00
|
|
|
autoload :Selenium, 'capybara/driver/selenium_driver'
|
|
|
|
end
|
|
|
|
end
|
2010-01-17 11:40:26 -05:00
|
|
|
|
2010-07-11 07:15:48 -04:00
|
|
|
Capybara.configure do |config|
|
|
|
|
config.run_server = true
|
2010-10-27 22:53:59 -04:00
|
|
|
config.server {|app, port| Capybara.run_default_server(app, port)}
|
2010-07-11 07:15:48 -04:00
|
|
|
config.default_selector = :css
|
|
|
|
config.default_wait_time = 2
|
|
|
|
config.ignore_hidden_elements = false
|
|
|
|
end
|
2010-08-17 21:22:54 -04:00
|
|
|
|
2010-07-29 09:20:11 -04:00
|
|
|
Capybara.register_driver :rack_test do |app|
|
|
|
|
Capybara::Driver::RackTest.new(app)
|
|
|
|
end
|
|
|
|
|
2010-09-07 12:16:19 -04:00
|
|
|
Capybara.register_driver :celerity do |app|
|
2010-10-22 07:37:10 -04:00
|
|
|
Capybara::Driver::Celerity.new(app)
|
2010-09-07 12:16:19 -04:00
|
|
|
end
|
|
|
|
|
2010-07-29 09:20:11 -04:00
|
|
|
Capybara.register_driver :culerity do |app|
|
|
|
|
Capybara::Driver::Culerity.new(app)
|
|
|
|
end
|
|
|
|
|
|
|
|
Capybara.register_driver :selenium do |app|
|
|
|
|
Capybara::Driver::Selenium.new(app)
|
|
|
|
end
|