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'
2011-12-29 12:51:22 -05:00
2009-11-16 16:02:16 -05:00
module Capybara
class CapybaraError < StandardError ; end
class DriverNotFoundError < CapybaraError ; end
2011-08-15 09:33:23 -04:00
class FrozenInTime < CapybaraError ; end
2009-11-16 16:02:16 -05:00
class ElementNotFound < CapybaraError ; end
2014-06-03 15:18:14 -04:00
class ModalNotFound < CapybaraError ; end
2012-07-09 07:21:44 -04:00
class Ambiguous < ElementNotFound ; end
2011-08-12 08:38:42 -04:00
class ExpectationNotMet < ElementNotFound ; end
2011-04-11 04:09:54 -04:00
class FileNotFound < 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
2012-12-26 10:47:18 -05:00
class InfiniteRedirectError < CapybaraError ; end
2014-04-08 17:28:16 -04:00
class ScopeError < CapybaraError ; end
class WindowError < CapybaraError ; end
2014-06-11 20:14:31 -04:00
class ReadOnlyElementError < CapybaraError ; end
2010-06-26 20:36:25 -04:00
2009-11-16 16:02:16 -05:00
class << self
2013-02-19 17:49:53 -05:00
attr_accessor :asset_host , :app_host , :run_server , :default_host , :always_include_port
2013-09-11 17:26:37 -04:00
attr_accessor :server_port , :exact , :match , :exact_options , :visible_text_only
2015-04-14 16:56:30 -04:00
attr_accessor :default_selector , :default_max_wait_time , :ignore_hidden_elements
2015-04-21 13:52:49 -04:00
attr_accessor :save_and_open_page_path , :wait_on_first_by_default , :automatic_reload , :raise_server_errors , :server_errors
2013-09-11 17:26:37 -04:00
attr_writer :default_driver , :current_driver , :javascript_driver , :session_name , :server_host
2011-12-30 11:54:44 -05:00
attr_accessor :app
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
#
2015-02-26 20:41:18 -05:00
# [app_host = String] The default host to use when giving a relative URL to visit
# [always_include_port = Boolean] Whether the Rack server's port should automatically be inserted into every visited URL (Default: false)
# [asset_host = String] Where dynamic assets are hosted - will be prepended to relative asset locations if present (Default: nil)
# [run_server = Boolean] Whether to start a Rack server for the given Rack app (Default: true)
# [raise_server_errors = Boolean] Should errors raised in the server be raised in the tests? (Default: true)
# [server_errors = Array\<Class\>] Error classes that should be raised in the tests if they are raised in the server and Capybara.raise_server_errors is true (Default: [StandardError])
# [default_selector = :css/:xpath] Methods which take a selector use the given type by default (Default: :css)
2015-04-14 16:56:30 -04:00
# [default_max_wait_time = Numeric] The maximum number of seconds to wait for asynchronous processes to finish (Default: 2)
2015-02-26 20:41:18 -05:00
# [ignore_hidden_elements = Boolean] Whether to ignore hidden elements on the page (Default: true)
# [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)
2015-04-21 13:52:49 -04:00
# [wait_on_first_by_default = Boolean] Whether Node#first defaults to Capybara waiting behavior for at least 1 element to match (Default: false)
2010-07-11 11:26:08 -04:00
# === DSL Options
#
# when using capybara/dsl, the following options are also available:
#
2015-02-26 20:41:18 -05:00
# [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 11:26:08 -04:00
#
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|
2014-08-24 09:20:45 -04:00
# Capybara::RackTest::Driver.new(app)
2010-07-29 09:20:11 -04:00
# 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
#
2011-01-19 06:52:00 -05:00
# This makes it possible to use this selector in a variety of ways:
2010-10-22 11:03:51 -04:00
#
# find(:row, 3)
# page.find('table#myTable').find(:row, 3).text
# page.find('table#myTable').has_selector?(:row, 3)
2013-11-14 12:43:36 -05:00
# within(:row, 3) { expect(page).to have_content('$100.000') }
2010-10-22 11:03:51 -04:00
#
2013-01-06 16:24:46 -05:00
# Here is another example:
2010-10-22 11:03:51 -04:00
#
# Capybara.add_selector(:id) do
# xpath { |id| XPath.descendant[XPath.attr(:id) == id.to_s] }
# end
#
# 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
#
2013-01-07 03:54:09 -05:00
# By default, Capybara will try to run webrick.
2010-10-27 22:53:59 -04:00
#
2014-03-31 18:10:27 -04:00
# @yield [app, port] This block receives a rack app and port and should run a Rack handler
2010-10-27 22:53:59 -04:00
#
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
2015-02-26 16:40:59 -05:00
# in a {Capybara::Node::Simple} which exposes all {Capybara::Node::Matchers},
2014-08-24 09:20:45 -04:00
# {Capybara::Node::Finders} and {Capybara::Node::DocumentMatchers}. This allows you to query
# any string containing HTML in the exact same way you would query the current document in a Capybara
2010-11-21 08:07:56 -05:00
# 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')
2014-08-24 09:20:45 -04:00
# node.has_selector?('#projects')
# node.find('ul').find('li:first-child').text # => 'Home'
2010-11-21 08:07:56 -05:00
#
# @param [String] html An html fragment or document
2010-11-21 08:37:36 -05:00
# @return [Capybara::Node::Simple] A node which has Capybara's finders and matchers
2010-11-21 08:07:56 -05:00
#
def string ( html )
2010-11-21 08:37:36 -05:00
Capybara :: Node :: Simple . new ( html )
2010-11-21 08:07:56 -05:00
end
2010-11-21 08:08:07 -05: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 08:52:52 -05:00
# @param [Fixnum] port The port to run the application on
2010-11-21 08:08:07 -05:00
#
2010-10-27 22:53:59 -04:00
def run_default_server ( app , port )
2012-12-31 05:51:57 -05:00
require 'rack/handler/webrick'
2013-09-11 17:26:37 -04:00
Rack :: Handler :: WEBrick . run ( app , :Host = > server_host , :Port = > port , :AccessLog = > [ ] , :Logger = > WEBrick :: Log :: new ( nil , 0 ) )
2010-10-27 22:53:59 -04:00
end
2011-12-30 11:54:44 -05: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
2013-09-11 17:26:37 -04:00
##
#
# @return [String] The IP address bound by default server
#
def server_host
@server_host || '127.0.0.1'
end
2011-12-30 11:54:44 -05:00
##
#
# Yield a block using a specific wait time
#
def using_wait_time ( seconds )
2015-04-14 16:56:30 -04:00
previous_wait_time = Capybara . default_max_wait_time
Capybara . default_max_wait_time = seconds
2011-12-30 11:54:44 -05:00
yield
ensure
2015-04-14 16:56:30 -04:00
Capybara . default_max_wait_time = previous_wait_time
2011-12-30 11:54:44 -05:00
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
2013-10-20 13:29:22 -04:00
2013-04-29 16:50:14 -04:00
##
#
# Parse raw html into a document using Nokogiri, and adjust textarea contents as defined by the spec.
#
# @param [String] html The raw html
# @return [Nokogiri::HTML::Document] HTML document
#
def HTML ( html )
Nokogiri :: HTML ( html ) . tap do | document |
2013-10-20 13:29:22 -04:00
document . xpath ( '//textarea' ) . each do | textarea |
2013-04-29 16:50:14 -04:00
textarea . content = textarea . content . sub ( / \ A \ n / , '' )
end
end
end
2015-04-14 16:56:30 -04:00
# @deprecated Use default_max_wait_time instead
def default_wait_time
deprecate ( 'default_wait_time' , 'default_max_wait_time' )
default_max_wait_time
end
# @deprecated Use default_max_wait_time= instead
def default_wait_time = ( t )
deprecate ( 'default_wait_time=' , 'default_max_wait_time=' )
self . default_max_wait_time = t
end
2011-12-30 11:54:44 -05:00
def included ( base )
base . send ( :include , Capybara :: DSL )
warn " `include Capybara` is deprecated. Please use `include Capybara::DSL` instead. "
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
2011-12-30 11:54:44 -05:00
private
def session_pool
@session_pool || = { }
end
2009-11-16 16:02:16 -05:00
end
2010-06-26 20:36:25 -04:00
2012-01-08 08:51:25 -05:00
self . default_driver = nil
2012-01-08 08:51:44 -05:00
self . current_driver = nil
2013-03-15 21:20:44 -04:00
module Driver ; end
module RackTest ; end
module Selenium ; end
2013-03-17 10:39:36 -04:00
require 'capybara/helpers'
2013-03-15 21:20:44 -04:00
require 'capybara/session'
require 'capybara/dsl'
2014-04-08 17:28:16 -04:00
require 'capybara/window'
2013-03-15 21:20:44 -04:00
require 'capybara/server'
require 'capybara/selector'
require 'capybara/result'
require 'capybara/version'
2014-02-16 12:13:58 -05:00
require 'capybara/queries/base_query'
require 'capybara/query'
require 'capybara/queries/text_query'
require 'capybara/queries/title_query'
2013-03-15 21:20:44 -04:00
require 'capybara/node/finders'
require 'capybara/node/matchers'
require 'capybara/node/actions'
2014-02-16 12:13:58 -05:00
require 'capybara/node/document_matchers'
2013-03-15 21:20:44 -04:00
require 'capybara/node/simple'
require 'capybara/node/base'
require 'capybara/node/element'
require 'capybara/node/document'
require 'capybara/driver/base'
require 'capybara/driver/node'
2013-03-18 18:39:57 -04:00
require 'capybara/rack_test/driver'
require 'capybara/rack_test/node'
require 'capybara/rack_test/form'
require 'capybara/rack_test/browser'
require 'capybara/rack_test/css_handlers.rb'
require 'capybara/selenium/node'
require 'capybara/selenium/driver'
2009-11-16 16:02:16 -05:00
end
2010-01-17 11:40:26 -05:00
2010-07-11 07:15:48 -04:00
Capybara . configure do | config |
2012-07-04 10:42:09 -04:00
config . always_include_port = false
2010-07-11 07:15:48 -04:00
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
2015-04-14 16:56:30 -04:00
config . default_max_wait_time = 2
2013-02-10 10:02:09 -05:00
config . ignore_hidden_elements = true
2011-03-25 05:01:59 -04:00
config . default_host = " http://www.example.com "
2011-07-13 09:39:17 -04:00
config . automatic_reload = true
2013-02-15 14:32:05 -05:00
config . match = :smart
config . exact = false
2013-02-16 05:04:40 -05:00
config . raise_server_errors = true
2015-02-26 16:40:59 -05:00
config . server_errors = [ StandardError ]
2013-02-17 08:46:37 -05:00
config . visible_text_only = false
2015-04-21 13:52:49 -04:00
config . wait_on_first_by_default = false
2010-07-11 07:15:48 -04:00
end
2010-08-17 21:22:54 -04:00
2010-07-29 09:20:11 -04:00
Capybara . register_driver :rack_test do | app |
2011-04-05 11:42:12 -04:00
Capybara :: RackTest :: Driver . new ( app )
2010-07-29 09:20:11 -04:00
end
Capybara . register_driver :selenium do | app |
2011-04-11 01:24:00 -04:00
Capybara :: Selenium :: Driver . new ( app )
2010-07-29 09:20:11 -04:00
end