Module: Capybara
- Extended by:
- DSL
- Defined in:
- lib/capybara.rb,
lib/capybara/dsl.rb,
lib/capybara/query.rb,
lib/capybara/result.rb,
lib/capybara/server.rb,
lib/capybara/session.rb,
lib/capybara/helpers.rb,
lib/capybara/version.rb,
lib/capybara/selector.rb,
lib/capybara/node/base.rb,
lib/capybara/node/simple.rb,
lib/capybara/driver/node.rb,
lib/capybara/node/actions.rb,
lib/capybara/node/finders.rb,
lib/capybara/node/element.rb,
lib/capybara/node/matchers.rb,
lib/capybara/node/document.rb,
lib/capybara/rspec/features.rb,
lib/capybara/rspec/matchers.rb,
lib/capybara/spec/spec_helper.rb
Defined Under Namespace
Modules: DSL, Driver, Features, Helpers, Node, RSpecMatchers, RackTest, Selenium, SpecHelper Classes: Ambiguous, CapybaraError, DriverNotFoundError, ElementNotFound, ExpectationNotMet, FileNotFound, FrozenInTime, InfiniteRedirectError, NotSupportedByDriverError, Query, Result, Selector, Server, Session, UnselectNotAllowed
Constant Summary
- VERSION =
'2.1.0.beta1'
Class Attribute Summary (collapse)
-
+ (Object) always_include_port
Returns the value of attribute always_include_port.
-
+ (Object) app
Returns the value of attribute app.
-
+ (Object) app_host
Returns the value of attribute app_host.
-
+ (Object) asset_host
Returns the value of attribute asset_host.
-
+ (Object) automatic_reload
Returns the value of attribute automatic_reload.
-
+ (Symbol) current_driver
(also: mode)
The name of the driver currently in use.
-
+ (Symbol) default_driver
The name of the driver to use by default.
-
+ (Object) default_host
Returns the value of attribute default_host.
-
+ (Object) default_selector
Returns the value of attribute default_selector.
-
+ (Object) default_wait_time
Returns the value of attribute default_wait_time.
-
+ (Object) exact
Returns the value of attribute exact.
-
+ (Object) exact_options
Returns the value of attribute exact_options.
-
+ (Object) ignore_hidden_elements
Returns the value of attribute ignore_hidden_elements.
-
+ (Symbol) javascript_driver
The name of the driver used when JavaScript is needed.
-
+ (Object) match
Returns the value of attribute match.
-
+ (Object) raise_server_errors
Returns the value of attribute raise_server_errors.
-
+ (Object) run_server
Returns the value of attribute run_server.
-
+ (Object) save_and_open_page_path
Returns the value of attribute save_and_open_page_path.
-
+ (Object) server_host
Returns the value of attribute server_host.
-
+ (Object) server_port
Returns the value of attribute server_port.
-
+ (Symbol) session_name
The current session name.
-
+ (Object) visible_text_only
Returns the value of attribute visible_text_only.
Class Method Summary (collapse)
-
+ (Object) add_selector(name) { ... }
Add a new selector to Capybara.
-
+ (Object) configure {|_self| ... }
Configure Capybara to suit your needs.
-
+ (Capybara::Session) current_session
The current Capybara::Session based on what is set as Capybara.app and Capybara.current_driver.
- + (Object) deprecate(method, alternate_method)
- + (Object) drivers
- + (Object) included(base)
-
+ (Object) register_driver(name) {|app| ... }
Register a new driver for Capybara.
-
+ (Object) reset_sessions!
(also: reset!)
Reset sessions, cleaning out the pool of sessions.
-
+ (Object) run_default_server(app, port)
Runs Capybara's default server for the given application and port under most circumstances you should not have to call this method manually.
-
+ (Object) server {|app, port| ... }
Register a proc that Capybara will call to run the Rack application.
-
+ (Capybara::Node::Simple) string(html)
Wraps the given string, which should contain an HTML document or fragment in a Node::Simple which exposes all Node::Matchers and Node::Finders.
-
+ (Object) use_default_driver
Use the default driver as the current driver.
-
+ (Object) using_driver(driver)
Yield a block using a specific driver.
-
+ (Object) using_session(name)
Yield a block using a specific session name.
-
+ (Object) using_wait_time(seconds)
Yield a block using a specific wait time.
Methods included from DSL
extended, page, using_session, using_wait_time
Class Attribute Details
+ (Object) always_include_port
Returns the value of attribute always_include_port
18 19 20 |
# File 'lib/capybara.rb', line 18 def always_include_port @always_include_port end |
+ (Object) app
Returns the value of attribute app
23 24 25 |
# File 'lib/capybara.rb', line 23 def app @app end |
+ (Object) app_host
Returns the value of attribute app_host
18 19 20 |
# File 'lib/capybara.rb', line 18 def app_host @app_host end |
+ (Object) asset_host
Returns the value of attribute asset_host
18 19 20 |
# File 'lib/capybara.rb', line 18 def asset_host @asset_host end |
+ (Object) automatic_reload
Returns the value of attribute automatic_reload
21 22 23 |
# File 'lib/capybara.rb', line 21 def automatic_reload @automatic_reload end |
+ (Symbol) current_driver Also known as: mode
The name of the driver currently in use
185 186 187 |
# File 'lib/capybara.rb', line 185 def current_driver @current_driver || default_driver end |
+ (Symbol) default_driver
The name of the driver to use by default
177 178 179 |
# File 'lib/capybara.rb', line 177 def default_driver @default_driver || :rack_test end |
+ (Object) default_host
Returns the value of attribute default_host
18 19 20 |
# File 'lib/capybara.rb', line 18 def default_host @default_host end |
+ (Object) default_selector
Returns the value of attribute default_selector
20 21 22 |
# File 'lib/capybara.rb', line 20 def default_selector @default_selector end |
+ (Object) default_wait_time
Returns the value of attribute default_wait_time
20 21 22 |
# File 'lib/capybara.rb', line 20 def default_wait_time @default_wait_time end |
+ (Object) exact
Returns the value of attribute exact
19 20 21 |
# File 'lib/capybara.rb', line 19 def exact @exact end |
+ (Object) exact_options
Returns the value of attribute exact_options
19 20 21 |
# File 'lib/capybara.rb', line 19 def @exact_options end |
+ (Object) ignore_hidden_elements
Returns the value of attribute ignore_hidden_elements
20 21 22 |
# File 'lib/capybara.rb', line 20 def ignore_hidden_elements @ignore_hidden_elements end |
+ (Symbol) javascript_driver
The name of the driver used when JavaScript is needed
194 195 196 |
# File 'lib/capybara.rb', line 194 def javascript_driver @javascript_driver || :selenium end |
+ (Object) match
Returns the value of attribute match
19 20 21 |
# File 'lib/capybara.rb', line 19 def match @match end |
+ (Object) raise_server_errors
Returns the value of attribute raise_server_errors
21 22 23 |
# File 'lib/capybara.rb', line 21 def raise_server_errors @raise_server_errors end |
+ (Object) run_server
Returns the value of attribute run_server
18 19 20 |
# File 'lib/capybara.rb', line 18 def run_server @run_server end |
+ (Object) save_and_open_page_path
Returns the value of attribute save_and_open_page_path
21 22 23 |
# File 'lib/capybara.rb', line 21 def save_and_open_page_path @save_and_open_page_path end |
+ (Object) server_host
Returns the value of attribute server_host
19 20 21 |
# File 'lib/capybara.rb', line 19 def server_host @server_host end |
+ (Object) server_port
Returns the value of attribute server_port
19 20 21 |
# File 'lib/capybara.rb', line 19 def server_port @server_port end |
+ (Symbol) session_name
The current session name.
256 257 258 |
# File 'lib/capybara.rb', line 256 def session_name @session_name ||= :default end |
+ (Object) visible_text_only
Returns the value of attribute visible_text_only
19 20 21 |
# File 'lib/capybara.rb', line 19 def visible_text_only @visible_text_only end |
Class Method Details
+ (Object) add_selector(name) { ... }
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 variety 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') }
Here is another example:
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.
103 104 105 |
# File 'lib/capybara.rb', line 103 def add_selector(name, &block) Capybara::Selector.add(name, &block) end |
+ (Object) configure {|_self| ... }
Configure Capybara to suit your needs.
Capybara.configure do |config|
config.run_server = false
config.app_host = 'http://www.google.com'
end
Configurable options
- asset_host = String
-
The hostname for a server from which assets can be loaded, used by save_and_open_page
- 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)
- default_selector = :css/:xpath
-
Methods which take a selector use the given type by default (Default: CSS)
- default_wait_time = Integer
-
The 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: false)
- 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)
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)
54 55 56 |
# File 'lib/capybara.rb', line 54 def configure yield self end |
+ (Capybara::Session) current_session
The current Capybara::Session based on what is set as Capybara.app and Capybara.current_driver
236 237 238 |
# File 'lib/capybara.rb', line 236 def current_session session_pool["#{current_driver}:#{session_name}:#{app.object_id}"] ||= Capybara::Session.new(current_driver, app) end |
+ (Object) deprecate(method, alternate_method)
276 277 278 |
# File 'lib/capybara.rb', line 276 def deprecate(method, alternate_method) warn "DEPRECATED: ##{method} is deprecated, please use ##{alternate_method} instead" end |
+ (Object) drivers
107 108 109 |
# File 'lib/capybara.rb', line 107 def drivers @drivers ||= {} end |
+ (Object) included(base)
271 272 273 274 |
# File 'lib/capybara.rb', line 271 def included(base) base.send(:include, Capybara::DSL) warn "`include Capybara` is deprecated. Please use `include Capybara::DSL` instead." end |
+ (Object) register_driver(name) {|app| ... }
Register a new driver for Capybara.
Capybara.register_driver :rack_test do |app|
Capybara::Driver::RackTest.new(app)
end
71 72 73 |
# File 'lib/capybara.rb', line 71 def register_driver(name, &block) drivers[name] = block end |
+ (Object) reset_sessions! Also known as: reset!
Reset sessions, cleaning out the pool of sessions. This will remove any session information such as cookies.
245 246 247 |
# File 'lib/capybara.rb', line 245 def reset_sessions! session_pool.each { |mode, session| session.reset! } end |
+ (Object) run_default_server(app, port)
Runs Capybara's default server for the given application and port under most circumstances you should not have to call this method manually.
168 169 170 171 |
# File 'lib/capybara.rb', line 168 def run_default_server(app, port) require 'rack/handler/webrick' Rack::Handler::WEBrick.run(app, :Port => port, :AccessLog => [], :Logger => WEBrick::Log::new(nil, 0)) end |
+ (Object) server {|app, port| ... }
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 webrick.
124 125 126 127 128 129 130 |
# File 'lib/capybara.rb', line 124 def server(&block) if block_given? @server = block else @server end end |
+ (Capybara::Node::Simple) string(html)
Wraps the given string, which should contain an HTML document or fragment in a Capybara::Node::Simple 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'
155 156 157 |
# File 'lib/capybara.rb', line 155 def string(html) Capybara::Node::Simple.new(html) end |
+ (Object) use_default_driver
Use the default driver as the current driver
202 203 204 |
# File 'lib/capybara.rb', line 202 def use_default_driver @current_driver = nil end |
+ (Object) using_driver(driver)
Yield a block using a specific driver
210 211 212 213 214 215 216 |
# File 'lib/capybara.rb', line 210 def using_driver(driver) previous_driver = Capybara.current_driver Capybara.current_driver = driver yield ensure @current_driver = previous_driver end |
+ (Object) using_session(name)
Yield a block using a specific session name.
264 265 266 267 268 269 |
# File 'lib/capybara.rb', line 264 def using_session(name) self.session_name = name yield ensure self.session_name = :default end |
+ (Object) using_wait_time(seconds)
Yield a block using a specific wait time
222 223 224 225 226 227 228 |
# File 'lib/capybara.rb', line 222 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 |