2016-03-07 16:52:19 -08:00
# frozen_string_literal: true
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'
2016-12-15 09:04:01 -08:00
require 'forwardable'
require 'capybara/config'
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
2014-06-03 12:18:14 -07:00
class ModalNotFound < 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
2012-12-26 15:47:18 +00:00
class InfiniteRedirectError < CapybaraError ; end
2014-04-09 00:28:16 +03:00
class ScopeError < CapybaraError ; end
class WindowError < CapybaraError ; end
2014-06-11 17:14:31 -07:00
class ReadOnlyElementError < CapybaraError ; end
2010-06-27 02:36:25 +02:00
2016-12-15 09:04:01 -08:00
2009-11-16 22:02:16 +01:00
class << self
2016-12-15 09:04:01 -08:00
extend Forwardable
# DelegateCapybara global configurations
# @!method app
# See {Capybara#configure}
# @!method reuse_server
# See {Capybara#configure}
# @!method threadsafe
# See {Capybara#configure}
# @!method server
# See {Capybara#configure}
# @!method default_driver
# See {Capybara#configure}
# @!method javascript_driver
# See {Capybara#configure}
Config :: OPTIONS . each do | method |
def_delegators :config , method , " #{ method } = "
end
# Delegate Capybara global configurations
# @!method default_selector
# See {Capybara#configure}
# @!method default_max_wait_time
# See {Capybara#configure}
# @!method app_host
# See {Capybara#configure}
# @!method always_include_port
# See {Capybara#configure}
# @!method wait_on_first_by_default
# See {Capybara#configure}
SessionConfig :: OPTIONS . each do | method |
def_delegators :config , method , " #{ method } = "
end
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
#
2016-05-06 10:15:59 -07:00
# [app_host = String/nil] The default host to use when giving a relative URL to visit, must be a valid URL e.g. http://www.example.com
2016-01-06 17:11:00 -08:00
# [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)
# [default_max_wait_time = Numeric] The maximum number of seconds to wait for asynchronous processes to finish (Default: 2)
# [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)
2016-04-05 09:33:19 -07:00
# [save_path = String] Where to put pages saved through save_(page|screenshot), save_and_open_(page|screenshot) (Default: Dir.pwd)
2016-01-06 17:11:00 -08:00
# [wait_on_first_by_default = Boolean] Whether Node#first defaults to Capybara waiting behavior for at least 1 element to match (Default: false)
2016-08-01 14:14:10 -07:00
# [automatic_label_click = Boolean] Whether Node#choose, Node#check, Node#uncheck will attempt to click the associated label element if the checkbox/radio button are non-visible (Default: false)
2016-08-03 13:16:30 -07:00
# [enable_aria_label = Boolean] Whether fields, links, and buttons will match against aria-label attribute (Default: false)
2016-01-18 14:01:12 -08:00
# [reuse_server = Boolean] Reuse the server thread between multiple sessions using the same app object (Default: true)
2016-12-15 09:04:01 -08:00
# [threadsafe = Boolean] Whether sessions can be configured individually (Default: false)
# [server = Symbol] The name of the registered server to use when running the app under test (Default: :webrick)
#
2010-07-11 17:26:08 +02:00
# === DSL Options
#
# when using capybara/dsl, the following options are also available:
#
2016-01-06 17:11:00 -08: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 17:26:08 +02:00
#
2010-07-11 13:13:24 +02:00
def configure
2016-12-15 09:04:01 -08:00
yield ConfigureDeprecator . new ( config )
2010-07-11 13:13:24 +02:00
end
2010-07-29 15:20:11 +02:00
##
#
# Register a new driver for Capybara.
#
# Capybara.register_driver :rack_test do |app|
2014-08-24 16:20:45 +03:00
# Capybara::RackTest::Driver.new(app)
2010-07-29 15:20:11 +02:00
# end
#
# @param [Symbol] name The name of the new driver
# @yield [app] This block takes a rack app and returns a Capybara driver
2015-08-11 16:35:28 +01:00
# @yieldparam [<Rack>] app The rack application that this driver runs against. May be nil.
2010-07-29 15:20:11 +02:00
# @yieldreturn [Capybara::Driver::Base] A Capybara driver instance
#
def register_driver ( name , & block )
drivers [ name ] = block
end
2016-02-16 13:37:17 -08:00
##
#
# Register a new server for Capybara.
#
# Capybara.register_server :webrick do |app, port, host|
# require 'rack/handler/webrick'
# Rack::Handler::WEBrick.run(app, ...)
# end
#
# @param [Symbol] name The name of the new driver
# @yield [app, port, host] This block takes a rack app and a port and returns a rack server listening on that port
# @yieldparam [<Rack>] app The rack application that this server will contain.
# @yieldparam port The port number the server should listen on
# @yieldparam host The host/ip to bind to
# @yieldreturn [Capybara::Driver::Base] A Capybara driver instance
#
def register_server ( name , & block )
servers [ name . to_sym ] = 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)
2013-11-14 09:43:36 -08:00
# within(:row, 3) { expect(page).to have_content('$100.000') }
2010-10-22 17:03:51 +02:00
#
2013-01-07 00:24:46 +03:00
# Here is another example:
2010-10-22 17:03:51 +02: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 13:29:08 +02:00
def add_selector ( name , & block )
Capybara :: Selector . add ( name , & block )
end
2016-01-06 17:11:00 -08:00
##
#
2016-02-01 18:05:07 +01:00
# Modify a selector previously created by {Capybara.add_selector}.
2016-01-06 17:11:00 -08:00
# For example modifying the :button selector to also find divs styled
# to look like buttons might look like this
#
2016-02-01 18:03:47 +01:00
# Capybara.modify_selector(:button) do
2016-01-06 17:11:00 -08:00
# xpath { |locator| XPath::HTML.button(locator).or(XPath::css('div.btn')[XPath::string.n.is(locator)]) }
# end
#
# @param [Symbol] name The name of the selector to modify
# @yield A block executed in the context of the existing {Capybara::Selector}
#
def modify_selector ( name , & block )
Capybara :: Selector . update ( name , & block )
end
2010-07-29 15:20:11 +02:00
def drivers
@drivers || = { }
end
2010-09-18 18:51:33 -05:00
2016-02-16 13:37:17 -08:00
def servers
@servers || = { }
end
2010-11-21 14:07:56 +01:00
##
#
# Wraps the given string, which should contain an HTML document or fragment
2015-02-26 13:40:59 -08:00
# in a {Capybara::Node::Simple} which exposes all {Capybara::Node::Matchers},
2014-08-24 16:20:45 +03: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
2015-11-03 13:53:24 -05:00
# session.
#
# Example: A single element
#
# node = Capybara.string('<a href="foo">bar</a>')
# anchor = node.first('a')
# anchor[:href] #=> 'foo'
# anchor.text #=> 'bar'
#
# Example: Multiple elements
2010-11-21 14:07:56 +01:00
#
# node = Capybara.string <<-HTML
# <ul>
# <li id="home">Home</li>
# <li id="projects">Projects</li>
# </ul>
# HTML
#
# node.find('#projects').text # => 'Projects'
2016-10-04 11:10:29 -07:00
# node.has_selector?('li#home', text: 'Home')
2014-08-24 16:20:45 +03:00
# node.has_selector?('#projects')
# node.find('ul').find('li:first-child').text # => 'Home'
2010-11-21 14:07:56 +01:00
#
# @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
2016-12-17 00:03:53 +09:00
# @param [Integer] 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 )
2016-02-16 13:37:17 -08:00
servers [ :webrick ] . call ( app , port , server_host )
2010-10-27 19:53:59 -07:00
end
2011-12-30 17:54:44 +01:00
##
#
# @return [Symbol] The name of the driver currently in use
#
def current_driver
2016-12-15 09:04:01 -08:00
if threadsafe
Thread . current [ 'capybara_current_driver' ]
else
@current_driver
end || default_driver
2011-12-30 17:54:44 +01:00
end
alias_method :mode , :current_driver
2016-12-15 09:04:01 -08:00
def current_driver = ( name )
if threadsafe
Thread . current [ 'capybara_current_driver' ] = name
else
@current_driver = name
end
2011-12-30 17:54:44 +01:00
end
##
#
# Use the default driver as the current driver
#
def use_default_driver
2016-12-15 09:04:01 -08:00
self . current_driver = nil
2011-12-30 17:54:44 +01:00
end
##
#
# Yield a block using a specific driver
#
def using_driver ( driver )
previous_driver = Capybara . current_driver
Capybara . current_driver = driver
yield
ensure
2016-12-15 09:04:01 -08:00
self . current_driver = previous_driver
2013-09-12 01:26:37 +04:00
end
2011-12-30 17:54:44 +01:00
##
#
# Yield a block using a specific wait time
#
def using_wait_time ( seconds )
2015-04-14 13:56:30 -07:00
previous_wait_time = Capybara . default_max_wait_time
Capybara . default_max_wait_time = seconds
2011-12-30 17:54:44 +01:00
yield
ensure
2015-04-14 13:56:30 -07:00
Capybara . default_max_wait_time = previous_wait_time
2011-12-30 17:54:44 +01: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!
2016-04-29 11:20:03 -07:00
#reset in reverse so sessions that started servers are reset last
2016-11-21 16:28:45 -08:00
session_pool . reverse_each { | _mode , session | session . reset! }
2011-12-30 17:54:44 +01:00
end
alias_method :reset! , :reset_sessions!
##
#
# The current session name.
#
# @return [Symbol] The name of the currently used session.
#
def session_name
2016-12-15 09:04:01 -08:00
if threadsafe
Thread . current [ 'capybara_session_name' ] || = :default
else
@session_name || = :default
end
end
def session_name = ( name )
if threadsafe
Thread . current [ 'capybara_session_name' ] = name
else
@session_name = name
end
2011-12-30 17:54:44 +01:00
end
##
#
# Yield a block using a specific session name.
#
def using_session ( name )
2016-12-15 09:04:01 -08:00
previous_session_info = {
session_name : session_name ,
current_driver : current_driver ,
app : app
}
2011-12-30 17:54:44 +01:00
self . session_name = name
yield
ensure
2016-12-15 09:04:01 -08:00
self . session_name = previous_session_info [ :session_name ]
if threadsafe
self . current_driver = previous_session_info [ :current_driver ]
self . app = previous_session_info [ :app ]
end
2011-12-30 17:54:44 +01:00
end
2013-10-20 19:29:22 +02:00
2013-04-29 13:50:14 -07: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 19:29:22 +02:00
document . xpath ( '//textarea' ) . each do | textarea |
2017-01-16 12:39:44 -08:00
textarea [ '_capybara_raw_value' ] = textarea . content . sub ( / \ A \ n / , '' )
2013-04-29 13:50:14 -07:00
end
end
end
2016-01-06 17:11:00 -08:00
2016-12-15 09:04:01 -08:00
def session_options
config . session_options
2016-05-06 10:15:59 -07:00
end
2011-12-30 17:54:44 +01:00
def included ( base )
base . send ( :include , Capybara :: DSL )
warn " `include Capybara` is deprecated. Please use `include Capybara::DSL` instead. "
end
private
2016-12-15 09:04:01 -08:00
def config
@config || = Capybara :: Config . new
end
2011-12-30 17:54:44 +01:00
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
2015-07-21 17:04:29 +09:00
self . server_host = nil
2012-01-08 22:51:44 +09:00
2013-03-16 02:20:44 +01:00
module Driver ; end
module RackTest ; end
module Selenium ; end
2013-03-17 15:39:36 +01:00
require 'capybara/helpers'
2013-03-16 02:20:44 +01:00
require 'capybara/session'
2014-04-09 00:28:16 +03:00
require 'capybara/window'
2013-03-16 02:20:44 +01:00
require 'capybara/server'
require 'capybara/selector'
require 'capybara/result'
require 'capybara/version'
2014-02-16 20:13:58 +03:00
require 'capybara/queries/base_query'
2016-01-29 16:31:35 -08:00
require 'capybara/queries/selector_query'
2014-02-16 20:13:58 +03:00
require 'capybara/queries/text_query'
require 'capybara/queries/title_query'
2015-08-23 22:14:48 -07:00
require 'capybara/queries/current_path_query'
2016-01-29 16:31:35 -08:00
require 'capybara/queries/match_query'
require 'capybara/query'
2016-01-06 17:11:00 -08:00
2013-03-16 02:20:44 +01:00
require 'capybara/node/finders'
require 'capybara/node/matchers'
require 'capybara/node/actions'
2014-02-16 20:13:58 +03:00
require 'capybara/node/document_matchers'
2013-03-16 02:20:44 +01: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 23:39:57 +01: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 22:02:16 +01:00
end
2010-01-17 17:40:26 +01:00
2016-11-21 16:28:45 -08:00
Capybara . register_server :default do | app , port , _host |
2016-03-09 13:45:47 -08:00
Capybara . run_default_server ( app , port )
end
2016-02-16 13:37:17 -08:00
Capybara . register_server :webrick do | app , port , host |
require 'rack/handler/webrick'
2016-10-04 11:10:29 -07:00
Rack :: Handler :: WEBrick . run ( app , Host : host , Port : port , AccessLog : [ ] , Logger : WEBrick :: Log :: new ( nil , 0 ) )
2016-02-16 13:37:17 -08:00
end
Capybara . register_server :puma do | app , port , host |
2016-11-14 16:49:57 -08:00
require 'rack/handler/puma'
Rack :: Handler :: Puma . run ( app , Host : host , Port : port , Threads : " 0:4 " )
2016-02-16 13:37:17 -08:00
end
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
2016-03-09 13:45:47 -08:00
config . server = :default
2010-07-11 13:15:48 +02:00
config . default_selector = :css
2015-04-14 13:56:30 -07:00
config . default_max_wait_time = 2
2013-02-10 16:02:09 +01:00
config . ignore_hidden_elements = true
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
2013-02-15 20:32:05 +01:00
config . match = :smart
config . exact = false
2016-12-23 12:17:45 -08:00
config . exact_text = false
2013-02-16 11:04:40 +01:00
config . raise_server_errors = true
2015-02-26 13:40:59 -08:00
config . server_errors = [ StandardError ]
2013-02-17 14:46:37 +01:00
config . visible_text_only = false
2015-04-21 10:52:49 -07:00
config . wait_on_first_by_default = false
2016-08-01 14:14:10 -07:00
config . automatic_label_click = false
2016-08-03 13:16:30 -07:00
config . enable_aria_label = false
2016-01-18 14:01:12 -08:00
config . reuse_server = 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
2016-02-16 13:37:17 -08:00