Top "Capybara" questions

Capybara is a web application testing framework for Rack applications, such as Rails, Sinatra and Merb.

setting request headers in selenium

I'm attempting to set the request header 'Referer' to spoof a request coming from another site. We need the ability …

webdriver capybara selenium-webdriver
How to select option in drop down using Capybara

I'm trying to select an item from a drop down menu using Capybara (2.1.0). I want to select by number (meaning …

ruby selenium-webdriver capybara
How to check a checkbox in capybara?

I'm using Rspec and Capybara. How can I write a step to check a checkbox? I've tried check by value …

ruby-on-rails ruby testing rspec capybara
How to get current path with query string using Capybara

The page url is something like /people?search=name while I used current_path method of capybara it returned /people …

ruby-on-rails ruby-on-rails-3 rspec capybara
How to click first link in list of items after upgrading to Capybara 2.0?

How to click first link in that case: <div class="item"> <a href="/agree/">Agree</…

ruby rspec capybara
How to make Capybara check for visibility after some JS has run?

After loading a page I have code that runs and hides and shows various items based on data returned by …

ruby rspec capybara integration-testing
How to find an element by matching exact text of the element in Capybara

I have following two elements in HTML <a href="/berlin" >Berlin</a> <a href="/berlin" &…

ruby regex capybara
How can I check that a form field is prefilled correctly using capybara?

I have a field with a proper label that I can fill in with capybara without a problem: fill_in …

forms rspec capybara
capybara assert attributes of an element

I'm using RSpec2 and Capybara for acceptance testing. I would like to assert that link is disabled or not in …

ruby-on-rails rspec capybara
Capybara: How do I fill in a input field by its ID

I have this: <input class="string optional" id="course_group_courses_attributes_2_name" name="course_group[courses_attributes][2][name]" …

rspec capybara