Module: Capybara
- Extended by:
- Capybara
- Included in:
- Capybara
- Defined in:
- lib/capybara.rb,
lib/capybara/dsl.rb,
lib/capybara/node.rb,
lib/capybara/server.rb,
lib/capybara/session.rb,
lib/capybara/version.rb,
lib/capybara/selector.rb,
lib/capybara/driver/node.rb,
lib/capybara/node/actions.rb,
lib/capybara/node/finders.rb,
lib/capybara/util/timeout.rb,
lib/capybara/node/matchers.rb,
lib/capybara/util/save_and_open_page.rb
Defined Under Namespace
Modules: Driver Classes: CapybaraError, Document, DriverNotFoundError, Element, ElementNotFound, InfiniteRedirectError, LocateHiddenElementError, Node, NotSupportedByDriverError, Selector, Server, Session, TimeoutError, UnselectNotAllowed
Constant Summary collapse
- VERSION =
'0.4.0'
Class Attribute Summary collapse
-
.app ⇒ Object
Returns the value of attribute app.
-
.app_host ⇒ Object
Returns the value of attribute app_host.
-
.asset_root ⇒ Object
Returns the value of attribute asset_root.
-
.current_driver ⇒ Symbol
(also: mode)
The name of the driver currently in use.
-
.default_driver ⇒ Symbol
The name of the driver to use by default.
-
.default_host ⇒ Object
Returns the value of attribute default_host.
-
.default_selector ⇒ Object
Returns the value of attribute default_selector.
-
.default_wait_time ⇒ Object
Returns the value of attribute default_wait_time.
-
.ignore_hidden_elements ⇒ Object
Returns the value of attribute ignore_hidden_elements.
-
.javascript_driver ⇒ Symbol
The name of the driver used when JavaScript is needed.
-
.run_server ⇒ Object
Returns the value of attribute run_server.
-
.save_and_open_page_path ⇒ Object
Returns the value of attribute save_and_open_page_path.
-
.server_port ⇒ Object
Returns the value of attribute server_port.
Class Method Summary collapse
-
.add_selector(name) { ... } ⇒ Object
Add a new selector to Capybara.
-
.configure {|_self| ... } ⇒ Object
Configure Capybara to suit your needs.
-
.current_session ⇒ Capybara::Session
The current Capybara::Session base on what is set as Capybara.app and Capybara.current_driver.
- .deprecate(method, alternate_method) ⇒ Object
- .drivers ⇒ Object
-
.register_driver(name) {|app| ... } ⇒ Object
Register a new driver for Capybara.
-
.reset_sessions! ⇒ Object
(also: reset!)
Reset sessions, cleaning out the pool of sessions.
- .save_and_open_page(html) ⇒ Object
-
.timeout(seconds = 1, driver = nil, &block) ⇒ Object
Provides timeout similar to standard library Timeout, but avoids threads.
-
.use_default_driver ⇒ Object
Use the default driver as the current driver.
Instance Method Summary collapse
-
#page ⇒ Capybara::Session
Shortcut to accessing the current session.
Class Attribute Details
.app ⇒ Object
Returns the value of attribute app.
7 8 9 |
# File 'lib/capybara/dsl.rb', line 7 def app @app end |
.app_host ⇒ Object
Returns the value of attribute app_host.
16 17 18 |
# File 'lib/capybara.rb', line 16 def app_host @app_host end |
.asset_root ⇒ Object
Returns the value of attribute asset_root.
16 17 18 |
# File 'lib/capybara.rb', line 16 def asset_root @asset_root end |
.current_driver ⇒ Symbol Also known as: mode
Returns The name of the driver currently in use.
21 22 23 |
# File 'lib/capybara/dsl.rb', line 21 def current_driver @current_driver || default_driver end |
.default_driver ⇒ Symbol
Returns The name of the driver to use by default.
13 14 15 |
# File 'lib/capybara/dsl.rb', line 13 def default_driver @default_driver || :rack_test end |
.default_host ⇒ Object
Returns the value of attribute default_host.
16 17 18 |
# File 'lib/capybara.rb', line 16 def default_host @default_host end |
.default_selector ⇒ Object
Returns the value of attribute default_selector.
18 19 20 |
# File 'lib/capybara.rb', line 18 def default_selector @default_selector end |
.default_wait_time ⇒ Object
Returns the value of attribute default_wait_time.
18 19 20 |
# File 'lib/capybara.rb', line 18 def default_wait_time @default_wait_time end |
.ignore_hidden_elements ⇒ Object
Returns the value of attribute ignore_hidden_elements.
18 19 20 |
# File 'lib/capybara.rb', line 18 def ignore_hidden_elements @ignore_hidden_elements end |
.javascript_driver ⇒ Symbol
Returns The name of the driver used when JavaScript is needed.
30 31 32 |
# File 'lib/capybara/dsl.rb', line 30 def javascript_driver @javascript_driver || :selenium end |
.run_server ⇒ Object
Returns the value of attribute run_server.
16 17 18 |
# File 'lib/capybara.rb', line 16 def run_server @run_server end |
.save_and_open_page_path ⇒ Object
Returns the value of attribute save_and_open_page_path.
19 20 21 |
# File 'lib/capybara.rb', line 19 def save_and_open_page_path @save_and_open_page_path end |
.server_port ⇒ Object
Returns the value of attribute server_port.
17 18 19 |
# File 'lib/capybara.rb', line 17 def server_port @server_port end |
Class Method Details
.add_selector(name) { ... } ⇒ Object
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.
103 104 105 |
# File 'lib/capybara.rb', line 103 def add_selector(name, &block) Capybara::Selector.add(name, &block) end |
.configure {|_self| ... } ⇒ Object
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_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)
- 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)
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)
46 47 48 |
# File 'lib/capybara.rb', line 46 def configure yield self end |
.current_session ⇒ Capybara::Session
The current Capybara::Session base on what is set as Capybara.app and Capybara.current_driver
48 49 50 |
# File 'lib/capybara/dsl.rb', line 48 def current_session session_pool["#{current_driver}#{app.object_id}"] ||= Capybara::Session.new(current_driver, app) end |
.deprecate(method, alternate_method) ⇒ Object
111 112 113 |
# File 'lib/capybara.rb', line 111 def deprecate(method, alternate_method) warn "DEPRECATED: ##{method} is deprecated, please use ##{alternate_method} instead" end |
.drivers ⇒ Object
107 108 109 |
# File 'lib/capybara.rb', line 107 def drivers @drivers ||= {} end |
.register_driver(name) {|app| ... } ⇒ Object
63 64 65 |
# File 'lib/capybara.rb', line 63 def register_driver(name, &block) drivers[name] = block end |
.reset_sessions! ⇒ Object Also known as: reset!
Reset sessions, cleaning out the pool of sessions. This will remove any session information such as cookies.
57 58 59 |
# File 'lib/capybara/dsl.rb', line 57 def reset_sessions! session_pool.each { |mode, session| session.reset! } end |
.save_and_open_page(html) ⇒ Object
3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'lib/capybara/util/save_and_open_page.rb', line 3 def save_and_open_page(html) name = File.join(*[Capybara.save_and_open_page_path, "capybara-#{Time.new.strftime("%Y%m%d%H%M%S")}.html"].compact) unless Capybara.save_and_open_page_path.nil? || File.directory?(Capybara.save_and_open_page_path ) FileUtils.mkdir_p(Capybara.save_and_open_page_path) end FileUtils.touch(name) unless File.exist?(name) tempfile = File.new(name,'w') tempfile.write(rewrite_css_and_image_references(html)) tempfile.close open_in_browser(tempfile.path) end |
.timeout(seconds = 1, driver = nil, &block) ⇒ Object
Provides timeout similar to standard library Timeout, but avoids threads
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/capybara/util/timeout.rb', line 7 def timeout(seconds = 1, driver = nil, &block) start_time = Time.now result = nil until result return result if result = yield delay = seconds - (Time.now - start_time) if delay <= 0 raise TimeoutError end driver && driver.wait_until(delay) sleep(0.05) end end |
.use_default_driver ⇒ Object
Use the default driver as the current driver
38 39 40 |
# File 'lib/capybara/dsl.rb', line 38 def use_default_driver @current_driver = nil end |
Instance Method Details
#page ⇒ Capybara::Session
Shortcut to accessing the current session. This is useful when Capybara is included in a class or module.
class MyClass
include Capybara
def has_header?
page.has_css?('h1')
end
end
86 87 88 |
# File 'lib/capybara/dsl.rb', line 86 def page Capybara.current_session end |