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:
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...