Tagged Questions

Capybara aims to simplify the process of integration testing Rack applications, such as Rails, Sinatra or Merb. Capybara simulates how a real user would interact with a web application. It is agnostic about the driver running your tests and currently comes bundled with rack-test, Culerity, Celerity ...

learn more… | top users | synonyms

40
votes
1answer
1k views

Capybara does not pass header after form submit

I am building a Rails 3 app which renders different views for mobile devices (using jQuery Mobile) and regular desktop browsers. I am testing with Cucumber/Capybara, and have separate test suites for ...
30
votes
6answers
6k views

How to test a confirm dialog with Cucumber?

I am using Ruby on Rails with Cucumber and Capybara. How would I go about testing a simple confirm command ("Are you sure?")? Also, where could I find further documentation on this issue? Thank ...
13
votes
1answer
3k views

Cucumber and Capybara, clicking a non-link or button element

I am trying to test an inplace editor using Cucumber/Capybara/Selenium stack, but my problem is that the editor is activated by clicking a div and not a link or button. I can not seem to figure out ...
13
votes
10answers
4k views

Cucumber, capybara and selenium - Submiting a form without a button

I have a test using Cucumber, capybara and selenium driver. This test should go to a form and submit it. The normal text would be Scenario: Fill form Given I am on the Form page When I ...
12
votes
4answers
3k views

Rails 3.0.9 + Devise + Cucumber + Capybara the infamous “No route matches /users/sign_out”

I am using devise 1.4.2 with rails 3.0.9, cucumber-rails 1.0.2, capybara 1.0.0. I got No route matches "/users/sign_out" error when I clicked logout. I added :method => :delete to link_to tag after ...
11
votes
4answers
2k views

Rspec view testing with capybara and rails3

I really like the way RSpec is able to separate controller and view tests but have some problems with getting capybara matchers to work in a view test. What i basically try to achieve is sth like ...
9
votes
2answers
1k views

How to get parent node in Capybara?

I'm working with many jQuery plugins, that often create DOM elements without id or other identification properties, and the only way to get them in Capybara (for clicking for example) - is to get ...
9
votes
4answers
2k views

HTTP basic auth for Capybara

I'm writing some RSpec tests for my Rails 3 application and trying to switch from Webrat to Capybara. So far so good but the application uses HTTP basic auth to authorize my admin user, any idea how I ...
9
votes
1answer
1k views

How to verify number of records using capybara

I am using capybara along with cucumber on a Rails 2.3.9 project. I have users index page and I have two records there. Using capybara how do I assert that there are only two records in the page. ...
8
votes
3answers
961 views

cant get capybara-webkit to work

I am using capybara to do integration testing on my rails 3 app. When i add :js => true to a scenario my tests work with selenium but when i change to use the webkit driver for js i get errors for ...
8
votes
1answer
311 views

Selenium and Uploadify

Is there any way to usefully test an Uploadify file upload with Selenium? I'm using Capybara with Rails, but really, any solution with Selenium would be a starting place. I'm worried I may have to ...
8
votes
4answers
2k views

capybara assert attributes of an element

I'm using rspec2 and capybara for acceptance testing. I would like to assert that link is disable or not in Capybara. How could I do it? Thanks in advance!
8
votes
1answer
2k views

Cucumber/Capybara test no longer run in Rails 3 project

Do the latest versions of these gems not work with each other any more? It appears that something may have gotten out of whack in my bundle. undefined local variable or method `node' for ...
7
votes
2answers
930 views

Error installing gem capybara-webkit

I am new to ruby, but while trying to install capybara to run test on my system I get the following error. Im running OSX my_app$ gem install capybara-webkit Building native extensions. This could ...
7
votes
2answers
455 views

Do I need a custom Devise controller if only changing the Sign Up view?

I have the following steps in a capybara/rspec integration test, that is simply trying to sign up a new member. visit new_member_registration_path fill_in('Name:', :with => ...
7
votes
2answers
752 views

Using both webrat and capybara together

I've been using Capybara for integration/request testing, but have only just realised I can't do view testing with it. This SO answer suggests Webrat and Capybara can be used in tandem; but the RSpec ...
7
votes
2answers
828 views

Rails3 Google Maps testing with selenium

I'm trying to test a google maps app with Rails3. I'm using cucumber with capybara and selenium for javascript testing. I have a map where I wait for google maps to be loaded, and then send an ajax ...
7
votes
2answers
2k views

How to get current path using capybara

The page url is something like /people?search=name while I used current_path method of capybara it returned /people only. current_path.should == people_path(:search => 'name') But it fails ...
7
votes
2answers
2k views

Rails, Capybara and subdomains: how to visit certain subdomain

Rails 3, Cucumber 0.9.4, Capybara 0.4.0 I want to test my features with subdomain. I found that solution: Given /^I visit subdomain "(.+)"$/ do |sub| Capybara.default_host = "#{sub}.example.com" ...
7
votes
3answers
597 views

How can I test JQuery UI Sortable with Cucumber

I'm tryting to write a cucumber/capybara test to reorder some items and then save them back. Any thoughts on how to best do this?
7
votes
2answers
677 views

How can I simulate the browser back button in Capybara?

We have a issue on our e-commerce site where users occasionally hit "checkout" twice and have their card charged twice. It's a common enough bug and easy to fix, but I'd like to test the solution in ...
7
votes
5answers
3k views

Where to find documentation for Capybara? [Rails]

I am working with Cucumber and Capybara and am looking to test a basic javascript confirmation box. I am aware Capybara uses Selenium 2.0 (not RC) for its javascript testing. Where can I find the ...
7
votes
4answers
2k views

How can I see what capybara found in a failing cucumber step?

I started migrating from cucumber + webrat to cucumber + capybara. Now the behavior of "I should see " seems to be somewhat different. Most of these fail now, although I didn't change anything on the ...
6
votes
3answers
636 views

Factory Girl / Capybara deleting records from database mid-test?

Working with RSpec & Capybara, I'm getting an interesting test failure mode which goes away with a few subtle rearrangements of lines in the test case...stuff that shouldn't matter. I'm ...
6
votes
4answers
2k views

Check select box has certain options with Capybara

How do I use Capybara to check that a select box has certain values listed as options? It has to be compatible with Selenium... This is the html I got: <select id='cars'> ...
6
votes
1answer
377 views

Formtastic checkbox params sent differently by Capybara than by actual app

The following formtastic form checkbox field set: <%= semantic_form_for @store do |f| %> <%= f.inputs do %> <%= f.input :services, :as => :check_boxes, :collection => ...
6
votes
1answer
2k views

How to test posts in Rails / Capybara / Cucumber or Rspec

I'm using rspec, cucumber and capybara and I'm looking for a way to test that a malicious user can't hack a form then post to an url he/she doesn't have permission to. I have my permissions set up in ...
6
votes
1answer
1k views

How can I run Selenium (used through Capybara) at a lower speed?

By default Selenium runs as fast as possible through the scenarios I defined using Cucumber. I would like to set it to run at a lower speed, so I am able to capture a video of the process. I figured ...
6
votes
2answers
2k views

Capybara doesn't recognize dynamically added DOM elements?

I seem to be having trouble testing the slick javascript things I do with jQuery when using Capybara and Selenium. The expected behavior is for a form to be dynamically generated when a user clicks ...
6
votes
4answers
2k views

How to use Capybara in pure Ruby (without Rails)?

I'm trying to get Capybara running in a simple Ruby script -- i.e. without/outside of Rails. Here's the script: require 'rubygems' require 'capybara' require 'capybara/dsl' include Capybara ...
6
votes
2answers
3k views

cucumber, capybara & selenium works randomly

Setup with cucumber, capybara and selenium but some scenarios works only randomly. Running ruby 1.8.6 on rvm rails 2.3.8 selenium pops open firefox 3.6 I have tried to add this with no luck: ...
5
votes
2answers
799 views

Using Capybara for AJAX integration tests

I am using Capybara for rails integration tests. When it comes to AJAX requests, I am getting the following error: Capybara::TimeoutError: failed to resynchronize, ajax request timed out Any idea ...
5
votes
2answers
825 views

Using Capybara and Selenium to hover over an element

I have a link on a page which only appears when hovering over a certain element. But I can't figure out how to emulate this and then click on the link so I can cucumber test it using Capybara and ...
5
votes
4answers
1k views

Migrating from Webrat to Capybara…unsuccessfully

Hoping someone might see what I've overlooked... I'm trying to get Capybara working in a small existing application...and I'm not having any luck. Gemfile: group :development, :test do gem ...
5
votes
3answers
1k views

dropdown with selected item, how to get its name/ label using capybara

Given the following dropdown: <select id="my-dropdown" name="my-dropdown"> <option value="1">Peter</option> <option value="2" selected>Pan</option> </select> ...
5
votes
2answers
833 views

Firefox 4 quits unexpectedly running Cucumber/Capybara/Webdriver

I just updated to the latest Firefox (4) and now our Cucumber, Capybara and Webdriver test suite is throwing errors when it tries to launch Firefox (anything marked with @javascript). Our test suite ...
5
votes
3answers
409 views

path not working properly when using capybara

I'm using rails 3.0.5, rspec2 with latest capybara. Routes setup like: scope "(:locale)", :locale => /de|fr|it|en/ do resources :dossiers end In application_controller I have this: def ...
5
votes
2answers
982 views

Selenium doesn't work with Cucumber/Capybara (out of the box) - MacOSX

I'm having trouble trying to get a cucumber example to run under selenium. I'm running Rails3 Cucumber 0.10.0 Capybara 0.4.1.2 Reading the doco on https://github.com/jnicklas/capybara, it would ...
5
votes
3answers
2k views

Testing multidomain Rails 3 app with Capybara

I want to test my multidomain RoR3 App. Here's my test_helper.rb ENV["RAILS_ENV"] = "test" require File.expand_path('../../config/environment', __FILE__) require 'rails/test_help' require ...
5
votes
3answers
2k views

How do I get the HTML in an element using Capybara?

I’m writing a cucumber test where I want to get the HTML in an element. For example: within 'table' do # this works find('//tr[2]//td[7]').text.should == "these are the comments" # I want ...
5
votes
2answers
3k views

Rails3, Cucumber, Capybara, File upload => bad content body (EOFError)?

I'm having a hard time getting a simple file upload test working. I'm using Rails 3.0.0 on ruby 1.9.2 with Cucumber and Capybara. View: <%= form_tag "/upload/create", :multipart => true do ...
5
votes
2answers
357 views

Log-in through authlogic without having to fill in form every time

I have a number of Cucumber scenarios which run with capybara on a project I am working on. Most of these scenarios start with a "Given I am logged in" step. Currently my implementation of this is: ...
4
votes
2answers
318 views

Capybara Acceptance DSL with MiniTest::Spec?

The readme for Capybara (see Using Capybara with MiniTest::Spec) says that I can do this if I include the module correctly, but it doesn't give any illustrative examples of how... I've tried including ...
4
votes
1answer
161 views

How to close browser with Capybara?

I have a situation when I'm using (using :selenium driver) multiple browsers with Capybara to test my front-end. How can I close some of them using Capybara, when they are not needed? Thank you!
4
votes
2answers
493 views

Running parallel selenium tests with capybara

Background: I have a set of Capybara integration tests running against my Rails 3 Application. For the other parts of the test suite I'm using Rspec. I have a selenium 2.6.0 standalone server hub ...
4
votes
1answer
527 views

How to stub ApplicationController method in request spec

I am needing to stub the response of a 'current_user' method in an Rspec/capybara request spec. The method is defined in ApplicationController and is using helper_method. The method should simply ...
4
votes
3answers
309 views

Simulate closing/reopening the browser in cucumber/capybara?

I'm writing cucumber tests to test user 'Remember me' type functionality, and in order to do that in real life the user would close their browser, reopen their browser, and come back to the site. My ...
4
votes
3answers
2k views

How does one use Selenium::WebDriver::Element#click to select an option from a SELECT element?

Using capybara 1.0.0 and selenium-webdriver 0.2.0 and in a test I have something like the following to select from a dropdown. select 'Food & Dining', :from => 'category_id' The test passes ...
4
votes
2answers
622 views

Spork Capybara, config.cache_classes conflict

I'm trying to setup Spork and Capybara with TestUnit, and am running into a test.rb config problem. The issue is that Spork requires that config.cache_classes be set to false, so that changes in ...
4
votes
2answers
959 views

Testing a web application's Facebook integration with Cucumber

I'd like to use Cucumber with Capybara to test my Rails application's Facebook registration procedure by executing the following scenario: @javascript Scenario: Connect account When I go to the ...

1 2 3 4 5 13