You can use these step definitions: Then /^I should not see an error$/ do (200 .. 399).should include(page.status_code...
In order to go back one page in your Cucumber tests, you can use the following step definition for Capybara...
This step tests whether a given select option comes preselected in the HTML. There is another step to test that...
This note describes a Cucumber step definition that lets you test whether or not a CSS selector is present on...
Terminus is a Capybara driver where most of the driver functions are implemented in client-side JavaScript. It lets you...
Sometimes the order in which strings appear on a page matters to you. Spreewald gives you steps like these:
Capybara's has_css? matcher has a couple of options you might find useful. Check that a selector appears a...
These steps are now part of Spreewald. This note describes a Cucumber step that lets you write this:
Both these approaches will keep your GET parameters -- and will only work for GET requests. Capybara: When /^I reload the...
This will not work (it always passes): Then the "Title" field should contain "" The value is turned into a regular...
By default, Cucumber uses mocha. This note shows to use RSpec stubs and mocks instead. Rspec 1 / Rails 2
Capybara does not play nice with sites that have some actions protected by SSL, some not. A popular way to...
tmp/* storage/* db/*.sqlite3 db/schema.rb db/structure.sql public/system .project .idea/ public/javascripts/all* public/stylesheets/all* public/stylesheets/*.css config/database.yml *~ *#* .#* .DS_Store webrat-*.html
Capybara sets up some tags for you to use in Cucumber. Often you’ll want to run only some scenarios...
Seems like there's no way to do it in Capybara, unfortunately. But if you're running your tests with...