0
votes
1answer
21 views

How can I click_link a specific row with Capybara

I'm trying to write all my Capybara code to not use any CSS or funny matchers. For acceptance test purposes, I'm using Capybara to navigate only by button and link text that is visible to the user. ...
0
votes
1answer
51 views

Poltergeist throws error when running visit command in rspec

I'm trying to replace the capybara-webkit driver with poltergeist for my specs that need javascript. I'm getting this weird error though and I can't find anyone else having the same issue. It's when ...
0
votes
1answer
35 views

No method error_messages selenium and capybara-webkit

When using capybara-webkit I have come across the issue of selenium not having an error_messages method, although, the documentation for capybara-webkit says that I should be able to access it through ...
0
votes
2answers
80 views

Trouble with Capybara and RSpec on a new model spec

I have searched a lot for a solution, but I could not find it! I am trying to make a rails application after watching Michael Hartl's tutorial and when i fill data manually and submit it nothing ...
0
votes
0answers
32 views

capybara is acting weird - “click_link” is undefined

Seems all of capybaras methods are magically undefined. I am trying to stub out some tests for TDD and I wrote the following test: it "sign in and fail" do click_link "login" fill_in "User ...
1
vote
0answers
30 views

Benchmarking with existing data

I'm new to Rails but not new to software development and so some of these may be elementary questions mixed in with head-scratching ones. We are trying to get some benchmarking in our app and are ...
0
votes
0answers
70 views

How to test remote server deployment of Rails app with Cucumber and Capybara

I am developing a Rails 3.x app under Windows 7 and am using Cucumber and Capybara for testing. I have set up an Ubuntu VM and deployed my app to that. I want to use Cucumber / Capybara to test my ...
0
votes
0answers
108 views

How to hit an Ajax link using capybara

I am writing integration tests in rspec/capybara. How to send ajax requests from integration test in capybara. I am using Ruby 1.9.2/ Rails 3.2.11 Capybara 2.0.2 Rspec 2.13.0 Thanks in advance
1
vote
2answers
127 views

Devise Authentication not working in Test Environment with RSpec Request Spec and Capybara

I've been stuck trying to get my requests spec to work. I've tried a number of different approaches I've found thru Google and SO. Below are the following helpers I've tried separately with my request ...
3
votes
3answers
891 views

Unable to setup Rspec & Capybara in Rails 3.2

I am creating a sample application for rspec testing, and I followed the below steps In Gemfile: gem "rspec-rails", :group => [:test, :development] group :test do gem "factory_girl_rails" gem ...
0
votes
0answers
123 views

How can I configure Capybara and Selenium server ports?

I'd like to be able to configure the port for the Capybara+Selenium server to be the same every time. How/where can I create this setting? Also, is it possible/advisable to make my non-Selenium ...
0
votes
2answers
68 views

how to test bad network connection with rspec

I'd like to test for connection errors to an external api. What is the best way to go about and do this? in my controller i have begin result = connect.to_api rescue Error::TooManyRequests => e ...
0
votes
2answers
393 views

RSpec, Capybara, JavaScript Tests Not Properly Rolling back the Database

So, I am testing my Ruby on Rails project, but I am having a problem with the database. I am using Stripe, and I am running integration tests for each of the pages along the user's purchasing ...
0
votes
0answers
100 views

Capybara-webkit - visit “/route_not_yet_set_up” doesn't fail

I'm working a rails 3 app and start to develop with BDD using cucumber and capybara. As I'm working on a javascript-heavy project, I'm using capybara-webkit to run most of the tests. When I'm ...
2
votes
1answer
209 views

Rspec testing for iframe content

How can i write rspec testing for Iframe content? my Iframe look like <iframe src="/any url" name="Original"> ... <div>test </div> </iframe> in between iframe whatever ...
0
votes
2answers
455 views

Rails 3.2.8 and rspec, link_to current path, params hash not properly converted

I recently upgraded by current app to Rails 3.2.8 and can't get a few tests to pass. I made a helper method that merges certain hashes with the params hash and creates a link to the current page. I ...
0
votes
1answer
207 views

Capybara chooses wrong format in controller

I am new to Rails and TDD. I am currently stuck on testing my page with Capybara and RSpec. I have a form on home page (root_path) that submits via post to Linkage controller : <%= form_for ...
1
vote
1answer
787 views

save_and_open_page (capybara / launchy) stopped working in a project - error

Trying to debug a section of specs that I cannot get to work when merging Rails two projects. I have deleted my Gemfile.lock and re-installed from scratch, I have run bundle update on specific gems, ...
0
votes
1answer
110 views

cucumber rails failing a case

I have the following scenario in feature: @home Feature: Home page @home Scenario: User launches home page Given a user visits the home page And user is not signed in Then he should see user ...
6
votes
4answers
2k views

testing with specs, capybara from railstutorial chapter 3 does not work (have_selector('title', :text => ' | Home'))

im working on ruby.railstutorial.org/ruby-on-rails-tutorial-book. Im using rails 3.2.7, spork, rspec, capybara, launchy and some guards :) i have a really weird problem in Chapter 3 with testing: It ...
0
votes
1answer
496 views

Testing http basic authentication with Cucumber and RSpec in Rails 3.2.3

I want to test the build-in basic http authentication mechanism in Rails 3.2.3. I have tried to test the http authentication in both RSpec and Cucumber but with a failing step in both tools. In ...
1
vote
1answer
595 views

Accessing rails_admin url helpers from Rspec files

I am using Rails 3.2, RailsAdmin 0.0.3, Rspec and Capybara. I try to call RailsAdmin url helpers from my spec file as it is explained in the RailsAdmin wiki. rails_admin.new_path(:model_name => ...
2
votes
1answer
472 views

Testing the asset pipeline with Capybara

I want to do simple request specs in my Rails 3.1 application with Capybara. The standard cases all work as expected, but when I want to test CSS generated by the asset pipeline, I receive the ...