I think this pattern is really useful not just for upgrading suites from Webrat, but really anywhere you have an...
Note: While the solution in this card should still work, we prefer another solution now: Hide your Selenium browser window...
API breakage ahoy. You need to either upgrade your Capybara or downgrade your selenium-webdriver gem. Alternatively, this could solve...
These steps are now part of Spreewald. Since Capybara 0.4.1 a within scope will only look at the first element...
The step definition below allows you to write: Then I should see a link labeled "Foo" But I should not...
Here is how to switch your Selenium to Chrome: Make sure you've got a recent version of chromedriver in...
When your cucumber features grow massively over time, the test execution can take a lot of time.
This is an awful way to test whether a number is shown on the screen: Then I should see "5...
Capybara allows you to select DOM elements, e.g. by using field, find_field(...) or field_labeled(...): role_select = field_labeled...
You can use CSS attribute selectors in your step definitions like this: Then /^the page should have a meta description...
A capybara driver that uses WebKit via QtWebKit.
Back when Steak was first released, Capybara didn’t have any of the nice RSpec helpers it does now. A...
Specify these gem versions in your Gemfile: gem 'cucumber', '~> 1.3.0' gem 'cucumber-rails', '= 0.3.2' # max version for Rails 2
You will occasionally need to clean out your database while keeping the schema intact, e.g. when someone inserted data in...
When you click a link or a press a button on a Selenium-controlled browser, the call will return control...
If you have content inside a page that is hidden by CSS, the following will work with Selenium, but not...
A while ago we were working on an application that had an entire version specially created for mobiles, such as...
This note describes a Cucumber step definition that lets you say: Then "Mow lawn" should be an option for "Activity...
Then /^I should get a response with status (\d+)$/ do |status| response.status.should include(status) end Capybara Then /^I should...
This card describes a Cucumber step that lets you say: When I perform basic authentication as "username/password" and I visit...
These steps are now part of Spreewald. The step definitions below allow you to test the filename suggested by the...
The step definitions below allow you to write this in both Webrat and Capybara: When I follow "Download as PDF...
When you need to see the content of a page (i.e. not all the HTML but the relevant text body...
Using this step definition you can check if any form field (text field, checkbox, etc) or button is disabled: