2016-03-07 19:52:19 -05:00
# frozen_string_literal: true
2018-01-08 15:23:54 -05:00
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'
2016-12-15 12:04:01 -05:00
require 'forwardable'
require 'capybara/config'
2020-05-25 17:49:51 -04:00
require 'capybara/registration_container'
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
2016-12-15 12:04:01 -05:00
extend Forwardable
# DelegateCapybara global configurations
# @!method app
2017-06-07 13:32:01 -04:00
# See {Capybara.configure}
2016-12-15 12:04:01 -05:00
# @!method reuse_server
2017-06-07 13:32:01 -04:00
# See {Capybara.configure}
2016-12-15 12:04:01 -05:00
# @!method threadsafe
2017-06-07 13:32:01 -04:00
# See {Capybara.configure}
2016-12-15 12:04:01 -05:00
# @!method server
2017-06-07 13:32:01 -04:00
# See {Capybara.configure}
2016-12-15 12:04:01 -05:00
# @!method default_driver
2017-06-07 13:32:01 -04:00
# See {Capybara.configure}
2016-12-15 12:04:01 -05:00
# @!method javascript_driver
2017-06-07 13:32:01 -04:00
# See {Capybara.configure}
2018-12-06 17:23:35 -05:00
# @!method allow_gumbo
# See {Capybara.configure}
2016-12-15 12:04:01 -05:00
Config :: OPTIONS . each do | method |
def_delegators :config , method , " #{ method } = "
end
# Delegate Capybara global configurations
# @!method default_selector
2017-06-07 13:32:01 -04:00
# See {Capybara.configure}
2016-12-15 12:04:01 -05:00
# @!method default_max_wait_time
2017-06-07 13:32:01 -04:00
# See {Capybara.configure}
2016-12-15 12:04:01 -05:00
# @!method app_host
2017-06-07 13:32:01 -04:00
# See {Capybara.configure}
2016-12-15 12:04:01 -05:00
# @!method always_include_port
2017-06-07 13:32:01 -04:00
# See {Capybara.configure}
2016-12-15 12:04:01 -05:00
SessionConfig :: OPTIONS . each do | method |
def_delegators :config , method , " #{ method } = "
end
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
#
2019-05-28 08:17:38 -04:00
# #### Configurable options
2010-07-11 11:26:08 -04:00
#
2019-05-28 08:17:38 -04:00
# - **allow_gumbo** (Boolean = `false`) - When `nokogumbo` is available, whether it will be used to parse HTML strings.
# - **always_include_port** (Boolean = `false`) - Whether the Rack server's port should automatically be inserted into every visited URL
# unless another port is explicitly specified.
# - **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`.
# - **asset_host** (String = `nil`) - Where dynamic assets are hosted - will be prepended to relative asset locations if present.
# - **automatic_label_click** (Boolean = `false`) - Whether {Capybara::Node::Element#choose Element#choose}, {Capybara::Node::Element#check Element#check},
# {Capybara::Node::Element#uncheck Element#uncheck} will attempt to click the associated `<label>` element if the checkbox/radio button are non-visible.
# - **automatic_reload** (Boolean = `true`) - Whether to automatically reload elements as Capybara is waiting.
# - **default_max_wait_time** (Numeric = `2`) - The maximum number of seconds to wait for asynchronous processes to finish.
# - **default_normalize_ws** (Boolean = `false`) - Whether text predicates and matchers use normalize whitespace behavior.
# - **default_selector** (`:css`, `:xpath` = `:css`) - Methods which take a selector use the given type by default. See also {Capybara::Selector}.
# - **default_set_options** (Hash = `{}`) - The default options passed to {Capybara::Node::Element#set Element#set}.
# - **enable_aria_label** (Boolean = `false`) - Whether fields, links, and buttons will match against `aria-label` attribute.
2020-04-05 17:13:53 -04:00
# - **enable_aria_role** (Boolean = `false`) - Selectors will check for relevant aria role (currently only `button`).
2019-05-28 08:17:38 -04:00
# - **exact** (Boolean = `false`) - Whether locators are matched exactly or with substrings. Only affects selector conditions
# written using the `XPath#is` method.
# - **exact_text** (Boolean = `false`) - Whether the text matchers and `:text` filter match exactly or on substrings.
# - **ignore_hidden_elements** (Boolean = `true`) - Whether to ignore hidden elements on the page.
# - **match** (`:one`, `:first`, `:prefer_exact`, `:smart` = `:smart`) - The matching strategy to find nodes.
# - **predicates_wait** (Boolean = `true`) - Whether Capybara's predicate matchers use waiting behavior by default.
# - **raise_server_errors** (Boolean = `true`) - Should errors raised in the server be raised in the tests?
# - **reuse_server** (Boolean = `true`) - Whether to reuse the server thread between multiple sessions using the same app object.
# - **run_server** (Boolean = `true`) - Whether to start a Rack server for the given Rack app.
# - **save_path** (String = `Dir.pwd`) - Where to put pages saved through {Capybara::Session#save_page save_page}, {Capybara::Session#save_screenshot save_screenshot},
# {Capybara::Session#save_and_open_page save_and_open_page}, or {Capybara::Session#save_and_open_screenshot save_and_open_screenshot}.
# - **server** (Symbol = `:default` (which uses puma)) - The name of the registered server to use when running the app under test.
2020-05-10 18:58:50 -04:00
# - **server_port** (Integer) - The port Capybara will run the application server on, if not specified a random port will be used.
2019-05-28 08:17:38 -04:00
# - **server_errors** (Array\<Class> = `[Exception]`) - Error classes that should be raised in the tests if they are raised in the server
# and {configure raise_server_errors} is `true`.
2019-05-30 03:31:19 -04:00
# - **test_id** (Symbol, String, `nil` = `nil`) - Optional attribute to match locator against with built-in selectors along with id.
2019-05-28 08:17:38 -04:00
# - **threadsafe** (Boolean = `false`) - Whether sessions can be configured individually.
2019-06-15 17:17:08 -04:00
# - **w3c_click_offset** (Boolean = 'false') - Whether click offsets should be from element center (true) or top left (false)
2016-12-15 12:04:01 -05:00
#
2019-05-28 08:17:38 -04:00
# #### DSL Options
2010-07-11 11:26:08 -04:00
#
2019-05-28 08:17:38 -04:00
# When using `capybara/dsl`, the following options are also available:
2010-07-11 11:26:08 -04:00
#
2019-05-28 08:17:38 -04:00
# - **default_driver** (Symbol = `:rack_test`) - The name of the driver to use by default.
# - **javascript_driver** (Symbol = `:selenium`) - The name of a driver to use for JavaScript enabled tests.
2010-07-11 11:26:08 -04:00
#
2010-07-11 07:13:24 -04:00
def configure
2017-11-13 13:27:36 -05:00
yield config
2010-07-11 07:13:24 -04:00
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
2015-08-11 11:35:28 -04:00
# @yieldparam [<Rack>] app The rack application that this driver runs against. May be nil.
2010-07-29 09:20:11 -04:00
# @yieldreturn [Capybara::Driver::Base] A Capybara driver instance
#
def register_driver ( name , & block )
2020-05-25 17:49:51 -04:00
drivers . send ( :register , name , block )
2010-07-29 09:20:11 -04:00
end
2016-02-16 16:37:17 -05: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
#
def register_server ( name , & block )
2020-05-25 17:49:51 -04:00
servers . send ( :register , name . to_sym , block )
2016-02-16 16:37:17 -05:00
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}
#
2018-12-14 14:53:09 -05:00
def add_selector ( name , ** options , & block )
Capybara :: Selector . add ( name , ** options , & block )
2010-10-22 07:29:08 -04:00
end
2016-01-06 20:11:00 -05:00
##
#
2016-02-01 12:05:07 -05:00
# Modify a selector previously created by {Capybara.add_selector}.
2017-05-28 12:13:13 -04:00
# For example, adding a new filter to the :button selector to filter based on
# button style (a class) might look like this
2016-01-06 20:11:00 -05:00
#
2016-02-01 12:03:47 -05:00
# Capybara.modify_selector(:button) do
2018-12-06 14:27:03 -05:00
# filter (:btn_style, valid_values: [:primary, :secondary]) { |node, style| node[:class].split.include? "btn-#{style}" }
2016-01-06 20:11:00 -05:00
# end
#
2017-05-28 12:13:13 -04:00
#
2016-01-06 20:11:00 -05:00
# @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 09:20:11 -04:00
def drivers
2020-05-25 17:49:51 -04:00
@drivers || = RegistrationContainer . new
2010-07-29 09:20:11 -04:00
end
2010-09-18 19:51:33 -04:00
2016-02-16 16:37:17 -05:00
def servers
2020-05-25 17:49:51 -04:00
@servers || = RegistrationContainer . new
2016-02-16 16:37:17 -05:00
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
2015-11-03 13:53:24 -05:00
# session.
#
2019-05-21 19:47:48 -04:00
# @example A single element
2015-11-03 13:53:24 -05:00
# node = Capybara.string('<a href="foo">bar</a>')
# anchor = node.first('a')
# anchor[:href] #=> 'foo'
# anchor.text #=> 'bar'
#
2019-05-21 19:47:48 -04:00
# @example Multiple elements
2010-11-21 08:07:56 -05: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 14:10:29 -04:00
# 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
2016-12-16 10:03:53 -05:00
# @param [Integer] 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 )
2017-05-25 22:18:38 -04:00
servers [ :puma ] . call ( app , port , server_host )
2010-10-27 22:53:59 -04:00
end
2011-12-30 11:54:44 -05:00
##
#
# @return [Symbol] The name of the driver currently in use
#
def current_driver
2016-12-15 12:04:01 -05:00
if threadsafe
Thread . current [ 'capybara_current_driver' ]
else
@current_driver
end || default_driver
2011-12-30 11:54:44 -05:00
end
alias_method :mode , :current_driver
2016-12-15 12:04:01 -05:00
def current_driver = ( name )
if threadsafe
Thread . current [ 'capybara_current_driver' ] = name
else
@current_driver = name
end
2011-12-30 11:54:44 -05:00
end
##
#
# Use the default driver as the current driver
#
def use_default_driver
2016-12-15 12:04:01 -05:00
self . current_driver = nil
2011-12-30 11:54:44 -05: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 12:04:01 -05:00
self . current_driver = previous_driver
2013-09-11 17:26:37 -04:00
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
##
#
2019-05-21 20:34:01 -04:00
# The current {Capybara::Session} based on what is set as {app} and {current_driver}.
2011-12-30 11:54:44 -05:00
#
# @return [Capybara::Session] The currently used session
#
def current_session
2018-10-01 14:58:27 -04:00
specified_session || session_pool [ " #{ current_driver } : #{ session_name } : #{ app . object_id } " ]
2011-12-30 11:54:44 -05:00
end
##
#
# Reset sessions, cleaning out the pool of sessions. This will remove any session information such
# as cookies.
#
def reset_sessions!
2018-01-09 17:05:50 -05:00
# reset in reverse so sessions that started servers are reset last
2016-11-21 19:28:45 -05:00
session_pool . reverse_each { | _mode , session | session . reset! }
2011-12-30 11:54:44 -05: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 12:04:01 -05: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 11:54:44 -05:00
end
##
#
2019-05-21 20:34:01 -04:00
# Yield a block using a specific session name or {Capybara::Session} instance.
2011-12-30 11:54:44 -05:00
#
2020-04-19 16:25:10 -04:00
def using_session ( name_or_session , & block )
previous_session = current_session
2016-12-15 12:04:01 -05:00
previous_session_info = {
2018-10-01 14:58:27 -04:00
specified_session : specified_session ,
2016-12-15 12:04:01 -05:00
session_name : session_name ,
current_driver : current_driver ,
app : app
}
2018-10-01 14:58:27 -04:00
self . specified_session = self . session_name = nil
if name_or_session . is_a? Capybara :: Session
self . specified_session = name_or_session
else
self . session_name = name_or_session
end
2020-04-19 16:25:10 -04:00
if block . arity . zero?
yield
else
yield current_session , previous_session
end
2011-12-30 11:54:44 -05:00
ensure
2018-10-01 14:58:27 -04:00
self . session_name , self . specified_session = previous_session_info . values_at ( :session_name , :specified_session )
self . current_driver , self . app = previous_session_info . values_at ( :current_driver , :app ) if threadsafe
2011-12-30 11:54:44 -05:00
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
#
2018-01-09 17:05:50 -05:00
def HTML ( html ) # rubocop:disable Naming/MethodName
2018-12-06 17:23:35 -05:00
if Nokogiri . respond_to? ( :HTML5 ) && Capybara . allow_gumbo # Nokogumbo installed and allowed for use
2017-07-27 04:05:13 -04:00
Nokogiri :: HTML5 ( html ) . tap do | document |
2019-05-17 15:55:07 -04:00
document . xpath ( '//template' ) . each do | template |
# template elements content is not part of the document
template . inner_html = ''
end
2017-07-27 04:05:13 -04:00
document . xpath ( '//textarea' ) . each do | textarea |
# The Nokogumbo HTML5 parser already returns spec compliant contents
textarea [ '_capybara_raw_value' ] = textarea . content
end
end
else
Nokogiri :: HTML ( html ) . tap do | document |
2019-05-17 15:55:07 -04:00
document . xpath ( '//template' ) . each do | template |
# template elements content is not part of the document
template . inner_html = ''
end
2017-07-27 04:05:13 -04:00
document . xpath ( '//textarea' ) . each do | textarea |
2020-06-07 12:40:10 -04:00
textarea [ '_capybara_raw_value' ] = textarea . content . delete_prefix ( " \n " )
2017-07-27 04:05:13 -04:00
end
2013-04-29 16:50:14 -04:00
end
end
end
2016-01-06 20:11:00 -05:00
2016-12-15 12:04:01 -05:00
def session_options
config . session_options
2016-05-06 13:15:59 -04:00
end
2011-12-30 11:54:44 -05:00
private
2018-01-09 17:05:50 -05:00
2016-12-15 12:04:01 -05:00
def config
@config || = Capybara :: Config . new
end
2011-12-30 11:54:44 -05:00
def session_pool
2018-10-01 14:58:27 -04:00
@session_pool || = Hash . new do | hash , name |
hash [ name ] = Capybara :: Session . new ( current_driver , app )
end
end
def specified_session
if threadsafe
Thread . current [ 'capybara_specified_session' ]
else
2018-10-03 20:36:24 -04:00
@specified_session || = nil
2018-10-01 14:58:27 -04:00
end
end
def specified_session = ( session )
if threadsafe
Thread . current [ 'capybara_specified_session' ] = session
else
@specified_session = session
end
2011-12-30 11:54:44 -05:00
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
2015-07-21 04:04:29 -04:00
self . server_host = nil
2012-01-08 08:51:44 -05:00
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'
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'
2016-01-29 19:31:35 -05:00
require 'capybara/queries/selector_query'
2014-02-16 12:13:58 -05:00
require 'capybara/queries/text_query'
require 'capybara/queries/title_query'
2015-08-24 01:14:48 -04:00
require 'capybara/queries/current_path_query'
2016-01-29 19:31:35 -05:00
require 'capybara/queries/match_query'
2017-07-10 17:42:15 -04:00
require 'capybara/queries/ancestor_query'
require 'capybara/queries/sibling_query'
2018-06-20 14:43:21 -04:00
require 'capybara/queries/style_query'
2016-01-06 20:11:00 -05:00
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'
2020-07-14 02:23:08 -04:00
require 'capybara/rack_test/css_handlers'
2013-03-18 18:39:57 -04:00
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
2019-04-11 13:21:45 -04:00
require 'capybara/registrations/servers'
require 'capybara/registrations/drivers'
2016-02-16 16:37:17 -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
2016-03-09 16:45:47 -05:00
config . server = :default
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
2018-07-10 17:18:39 -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
2016-12-23 15:17:45 -05:00
config . exact_text = false
2013-02-16 05:04:40 -05:00
config . raise_server_errors = true
2019-02-24 17:04:04 -05:00
config . server_errors = [ Exception ]
2013-02-17 08:46:37 -05:00
config . visible_text_only = false
2016-08-01 17:14:10 -04:00
config . automatic_label_click = false
2016-08-03 16:16:30 -04:00
config . enable_aria_label = false
2020-04-05 17:13:53 -04:00
config . enable_aria_role = false
2016-01-18 17:01:12 -05:00
config . reuse_server = true
2018-05-18 11:22:14 -04:00
config . default_set_options = { }
2018-07-19 12:50:21 -04:00
config . test_id = nil
2018-07-23 17:57:22 -04:00
config . predicates_wait = true
2018-08-24 03:20:28 -04:00
config . default_normalize_ws = false
2019-01-16 12:53:09 -05:00
config . allow_gumbo = false
2019-06-15 17:17:08 -04:00
config . w3c_click_offset = false
2010-07-11 07:15:48 -04:00
end