teamcapybara--capybara/README.rdoc

403 lines
13 KiB
Plaintext
Raw Normal View History

= capybara
2009-11-04 22:00:05 +00:00
2009-11-16 21:02:16 +00:00
* http://github.com/jnicklas/capybara
2009-11-04 22:00:05 +00:00
== Description:
2009-11-04 22:00:05 +00:00
2009-11-18 23:00:10 +00:00
Capybara aims to simplify the process of integration testing Rack applications,
2009-11-18 23:15:46 +00:00
such as Rails, Sinatra or Merb. It is inspired by and aims to replace Webrat as
a DSL for interacting with a webapplication. It is agnostic about the driver
2009-12-25 17:00:27 +00:00
running your tests and currently comes bundled with rack-test, Culerity,
Celerity and Selenium support built in.
2009-11-04 22:00:05 +00:00
2009-11-24 23:18:33 +00:00
== Install:
2010-01-17 15:31:40 +00:00
Install as a gem:
2009-11-24 23:18:33 +00:00
sudo gem install capybara
On OSX you may have to install libffi, you can install it via MacPorts with:
2010-01-17 15:31:40 +00:00
sudo port install libffi
2009-11-24 23:16:17 +00:00
== Development:
* Source hosted at {GitHub}[http://github.com/jnicklas/capybara].
* Please direct questions, discussions at the {mailing list}[http://groups.google.com/group/ruby-capybara].
2009-11-24 23:17:20 +00:00
* Report issues on {GitHub Issues}[http://github.com/jnicklas/capybara/issues]
* Pull requests are very welcome!
2009-11-24 23:16:17 +00:00
== Using Capybara with Cucumber
2009-11-04 22:00:05 +00:00
2009-11-18 23:00:10 +00:00
Capybara is built to work nicely with Cucumber. The API is very similar to
Webrat, so if you know Webrat you should feel right at home. Support for
Capybara is built into cucumber-rails 0.2. In your Rails app, just run:
2009-11-04 22:00:05 +00:00
script/generate cucumber --capybara
2009-11-04 22:00:05 +00:00
And everything should be set up and ready to go.
2009-11-18 23:00:10 +00:00
If you want to use Capybara with Cucumber outside Rails (for example with Merb
or Sinatra), you'll need require capybara and set the Rack app manually:
2009-11-18 23:00:10 +00:00
require 'capybara/cucumber'
Capybara.app = MyRackApp
Now you can use it in your steps:
When /I sign in/ do
within("//form[@id='session']") do
fill_in 'Login', :with => 'user@example.com'
fill_in 'Password', :with => 'password'
end
click_link 'Sign in'
2009-11-15 01:13:07 +00:00
end
2009-11-04 22:00:05 +00:00
== Default and current driver
2009-11-18 23:00:10 +00:00
2009-11-18 23:15:46 +00:00
You can set up a default driver for your features. For example if you'd prefer
to run Selenium, you could do:
2009-11-18 23:00:10 +00:00
require 'capybara/rails'
require 'capybara/cucumber'
Capybara.default_driver = :selenium
You can change the driver temporarily:
Capybara.current_driver = :culerity
Capybara.use_default_driver
2009-12-14 21:07:51 +00:00
You can do this in Before and After blocks to temporarily switch to a different
driver. Note that switching driver creates a new session, so you may not be able
to switch in the middle of a Scenario.
== Cucumber and Tags
2009-11-18 23:00:10 +00:00
2009-11-20 18:15:19 +00:00
Capybara sets up some {tags}[http://wiki.github.com/aslakhellesoy/cucumber/tags]
2009-12-14 21:07:51 +00:00
for you to use in Cucumber. Often you'll want to run only some scenarios with a
driver that supports JavaScript, Capybara makes this easy: simply tag the
scenario (or feature) with <tt>@javascript</tt>:
2009-11-18 23:00:10 +00:00
@javascript
Scenario: do something AJAXy
When I click the AJAX link
...
You can change which driver Capybara uses for JavaScript:
Capybara.javascript_driver = :culerity
2009-12-14 21:07:51 +00:00
There are also explicit <tt>@selenium</tt>, <tt>@culerity</tt> and
<tt>@rack_test</tt> tags set up for you.
2009-11-18 23:00:10 +00:00
2009-12-25 17:00:27 +00:00
== Selenium
2009-11-18 23:00:10 +00:00
2009-12-25 17:00:27 +00:00
At the moment, Capybara supports Webdriver, also called Selenium 2.0, *not*
Selenium RC. Provided Firefox is installed, everything is set up for you, and
you should be able to start using Selenium right away.
2009-11-18 23:00:10 +00:00
2009-12-25 17:00:27 +00:00
== Celerity
2009-11-18 23:00:10 +00:00
2009-12-25 17:00:27 +00:00
Celerity only runs on JRuby, so you'll need to install the celerity gem under
JRuby:
2009-11-18 23:00:10 +00:00
2009-12-25 17:00:27 +00:00
jruby -S gem install celerity
2009-11-18 23:00:10 +00:00
2009-12-25 17:00:27 +00:00
Note that some specs currently fail on celerity 0.7.5, due to a bug in recent
versions of HTMLUnit. It is recommended you use celerity 0.7.4 for the time
being.
2009-11-18 23:00:10 +00:00
2009-12-25 17:00:27 +00:00
== Culerity
2009-11-18 23:00:10 +00:00
2009-12-25 17:00:27 +00:00
Install celerity as noted above, make sure JRuby is in your path. Note that
Culerity doesn't seem to be working under Ruby 1.9 at the moment.
2009-11-18 23:00:10 +00:00
2009-12-25 17:00:27 +00:00
== The DSL
2009-11-18 23:00:10 +00:00
Capybara's DSL is inspired by Webrat. While backwards compatibility is retained
2009-12-25 17:00:27 +00:00
in a lot of cases, there are certain important differences.
2009-12-25 17:00:27 +00:00
Unlike in Webrat, all searches in Capybara are *case sensitive*. This is because
Capybara heavily uses XPath, which doesn't support case insensitivity.
2009-12-25 17:00:27 +00:00
=== Navigating
You can use the <tt>visit</tt> method to navigate to other pages:
visit('/projects')
visit(post_comments_path(post))
The visit method only takes a single parameter, the request method is *always*
GET.
=== Clicking links and buttons
You can interact with the webapp by following links and buttons. Capybara
automatically follows any redirects, and submits forms associated with buttons.
click_link('id-of-link')
click_link('Link Text')
click_button('Save')
click('Link Text') # Click either a link or a button
click('Button Value')
=== Interacting with forms
Forms are everywhere in webapps, there are a number of tools for interacting
with the various form elements:
fill_in('First Name', :with => 'John')
fill_in('Password', :with => 'Seekrit')
fill_in('Description', :with => 'Really Long Text…')
choose('An Option')
check('A Checkbox')
uncheck('A Checkbox')
attach_file('Image', '/path/to/image.jpg')
select('Option', :from => 'Select Box')
=== Scoping
Capybara makes it possible to restrict certain actions, such as interacting with
forms or clicking links and buttons, to within a specific area of the page. For
this purpose you can use the generic <tt>within</tt> method. Optionally you can
specify which kind of selector (CSS or XPath to use).
within("//li[@id='employee']") do
fill_in 'Name', :with => 'Jimmy'
end
within(:css, "li#employee") do
fill_in 'Name', :with => 'Jimmy'
end
You can choose which kind of selector Capybara uses by default, by setting
<tt>Capybara.default_selector</tt>.
There are special methods for restricting the scope to a specific fieldset,
identified by either an id or the text of the fieldet's legend tag, and to a
specific table, identified by either idea or text of the table's caption tag.
within_fieldset('Employee') do
fill_in 'Name', :with => 'Jimmy'
end
within_table('Employee') do
fill_in 'Name', :with => 'Jimmy'
end
=== Querying
Capybara has a rich set of options for querying the page for the existence of
certain elements, and working with and manipulating those elements.
page.has_xpath?('//table/tr')
page.has_css?('table tr.foo')
page.has_content?('foo')
2009-12-25 17:00:27 +00:00
You can use with RSpecs magic matchers:
page.should have_xpath('//table/tr')
page.should have_css('table tr.foo')
page.should have_content('foo')
page.should have_no_content('foo')
Note that <tt>page.should have_no_xpath</tt> is preferred over
<tt>page.should_not have_xpath</tt>. Read the section on asynchronous JavaScript
for an explanation.
2009-12-25 17:00:27 +00:00
You can also find specific elements, in order to manipulate them:
find_field('First Name').value
find_link('Hello').visible?
find_button('Send').click
2009-12-25 17:00:27 +00:00
find('//table/tr').click
wait_for("//*[@id='overlay'").find("//h1").click
all('a').each { |a| a[:href] }
=== Scripting
In drivers which support it, you can easily evaluate JavaScript:
result = page.evaluate_script('4 + 4');
=== Debugging
It can be useful to take a snapshot of the page as it currently is and take a
look at it:
2009-11-18 23:00:10 +00:00
save_and_open_page
== Asynchronous JavaScript (AJAX and friends)
When working with asynchronous JavaScript, you might come across situations
where you are attempting to interact with an element which is not yet present
on the page. Capybara automatically deals with this by waiting for elements
to appear on the page.
When issuing instructions to the DSL such as:
click_link('foo')
click_link('bar')
page.should have_content('baz')
If clicking on the *foo* link causes triggers an asynchronous process, such as
an AJAX request, which, when complete will add the *bar* link to the page,
clicking on the *bar* link would be expeced to fail, since that link doesn't
exist yet. However Capybara is smart enought to retry finding the link for a
brief period of time before giving up and throwing an error. The same is true of
the next line, which looks for the content *baz* on the page; it will retry
looking for that content for a brief time. You can adjust how long this period
is (the default is 2 seconds):
Capybara.default_wait_time = 5
Be aware that because of this behaviour, the following two statements are *not*
identical, and you should *always* use the latter!
page.should_not have_xpath('//a')
page.should have_no_xpath('//a')
The former would incorrectly wait for the content to appear, since the
asynchronous process has not yet removed the element from the page, it would
therefore fail, even though the code might be working correctly. The latter
correctly wait for the element to disappear from the page.
== Using the DSL outside cucumber
2009-11-18 23:00:10 +00:00
You can mix the DSL into any context, for example you could use it in RSpec
examples. Just load the dsl and include it anywhere:
2009-11-04 22:00:05 +00:00
2009-11-16 21:02:16 +00:00
require 'capybara'
require 'capybara/dsl'
2009-11-18 23:00:10 +00:00
2009-11-16 21:02:16 +00:00
include Capybara
Capybara.default_driver = :culerity
2009-11-15 01:13:07 +00:00
within("//form[@id='session']") do
fill_in 'Login', :with => 'user@example.com'
fill_in 'Password', :with => 'password'
end
click_link 'Sign in'
== Calling remote servers
Normally Capybara expects to be testing an in-process Rack application, but you can also use it to talk to a web server running anywhere on the internets, by setting app_host:
require 'capybara'
require 'capybara/dsl'
include Capybara
Capybara.current_driver = :selenium
Capybara.app_host = 'http://www.google.com'
visit('/')
2010-02-05 18:54:56 +00:00
Note that rack-test does not support running against a remote server. With drivers that support it, you can also visit any URL directly:
visit('http://www.google.com')
By default Capybara will try to boot a rack application automatically. You might want to switch off Capybara's rack server if you are running against a remote application:
Capybara.run_server = false
== Using the sessions manually
2009-11-15 01:13:07 +00:00
2009-11-18 23:00:10 +00:00
For ultimate control, you can instantiate and use a session manually.
2009-11-15 01:13:07 +00:00
2009-11-18 23:00:10 +00:00
require 'capybara'
2009-11-15 01:13:07 +00:00
2009-11-18 23:00:10 +00:00
session = Capybara::Session.new(:culerity, my_rack_app)
session.within("//form[@id='session']") do
session.fill_in 'Login', :with => 'user@example.com'
session.fill_in 'Password', :with => 'password'
2009-11-15 01:13:07 +00:00
end
2009-11-18 23:00:10 +00:00
session.click_link 'Sign in'
2009-11-15 01:13:07 +00:00
2009-11-29 21:04:53 +00:00
== XPath and CSS
Capybara does not try to guess what kind of selector you are going to give it,
if you want to use CSS with your 'within' declarations for example, you'll need
to do:
within(:css, 'ul li') { ... }
find(:css, 'ul li').text
locate(:css, 'input#name').value
Alternatively you can set the default selector to CSS, which may help if you are
moving from Webrat and used CSS a lot, or simply generally prefer CSS:
Capybara.default_selector = :css
within('ul li') { ... }
find('ul li').text
locate('input#name').value
== Gotchas:
2009-11-15 01:13:07 +00:00
2009-11-18 23:15:46 +00:00
* Domain names (including subdomains) don't work under rack-test. Since it's a
pain to set up subdomains for the other drivers anyway, you should consider an
alternate solution. You might use
{default_url_options}[https://gist.github.com/643a758320a2926bd2ed] in Rails
2009-11-18 23:15:46 +00:00
for example.
2009-11-18 23:00:10 +00:00
2009-11-18 23:15:46 +00:00
* Access to session, request and response from the test is not possible. Maybe
we'll do response headers at some point in the future, but the others really
shouldn't be touched in an integration test anyway.
2009-11-04 22:00:05 +00:00
* Access to Rails specific stuff (such as <tt>controller</tt>) is unavailable,
since we're not using Rails' integration testing.
2009-11-18 23:15:46 +00:00
* <tt><a href="#"></tt> Will cause problems under rack-test, please do
<tt><a href="/same/url#"></tt> instead. You can achieve this in Rails with
<tt>link_to('foo', :anchor => '')</tt>
2009-11-18 23:15:46 +00:00
2009-11-26 22:48:34 +00:00
== Contributors:
The following people have dedicated their time and effort to Capybara:
* Jonas Nicklas
* Dennis Rogenius
* Rob Holland
2009-11-30 20:40:39 +00:00
* Wincent Colaiuta
2009-12-07 19:19:00 +00:00
* Andrea Fazzi
2009-12-12 21:12:47 +00:00
* Aslak Hellesøy
2009-12-17 17:18:28 +00:00
* Andrew Brown
2009-12-19 10:35:22 +00:00
* Lenny Marks
2010-01-01 18:12:47 +00:00
* Aaron Patterson
2010-01-07 06:40:57 +00:00
* Dan Dofter
* Thorbjørn Hermansen
2010-01-11 19:36:37 +00:00
* Louis T.
2010-01-23 11:49:40 +00:00
* Stephan Hagemann
* Graham Ashton
2010-02-05 18:54:56 +00:00
* Joseph Wilk
* Matt Wynne
2010-02-12 13:41:41 +00:00
* Piotr Sarnacki
2010-02-18 21:17:36 +00:00
* Pavel Gabriel
2010-02-20 01:06:42 +00:00
* Bodaniel Jeanes
2010-02-20 02:04:49 +00:00
* Carl Porth
2009-11-26 22:48:34 +00:00
== License:
2009-11-04 22:00:05 +00:00
(The MIT License)
Copyright (c) 2009 Jonas Nicklas
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.