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

learn more… | top users | synonyms

1
vote
1answer
88 views

Rspec with capybara strange behavior when guard is running

I've created a couple of tests using rspec+capybara. tests code When i run them with rspec they all pass git:(master) ✗ rspec Rack::File headers parameter replaces cache_control after Rack 1.5. ...
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
0
votes
0answers
40 views

Escaped slashes with Capybara Rack::Test driver

I'm trying to get Capybara with Rack::Test to work. It escapes second slash in visit's argument which results in a routing error. Earlier I've posted about this in the mailing list: ...
1
vote
1answer
72 views

Ruby Soundcloud Gem: Cannot Test Uploaded File

Haven't seen much on testing for the soundcloud gem. Most everything has been splendid - however I found that uploading files to SoundCloud through my specs is a bit tricky. Here's the problem: ...
0
votes
1answer
122 views

testing rails+backbone application with rspec & capybara

I'm writing a tests for my app with listed gems. I couldn't find how to set Capybara to work with backbone (ajax in all) example test: require 'spec_helper' describe "Main" do describe "GET /" do ...
0
votes
1answer
168 views

Integration test error with capybara for ajax call with rails 3.2.12

Here is a integration test case with capybara in rails 3.2.12. click_link 'New Log' is an ajax call. However the page opened starts with $() and has a bunch of js escape like \n and \log-log. it ...
0
votes
1answer
27 views

Capybara-Finding an arbitrery item on a html page

I'm trying to automate some tests on an html page which has a code like this: <br> <strong>DOCUMENTS</strong> <br> No file found. <br> <br> ...
2
votes
2answers
80 views

Test you are on a page with Cucumber and Capybara

In The training wheels came off post by Aslak Hellesoy he says he has removed web_steps.rb and paths.rb from more recent versions of cucumber. I can understand using the Capybara api instead of ...
1
vote
0answers
205 views

Sign in on subdomain using poltergeist, rspec, capybara, spork guard and rails 3.2.12

I cannot get my tests to sign in the user on a subdomain. Update I tried to play around with selenuim again. Now I got this error in the test.log. PG::Error: ERROR: deadlock detected DETAIL: ...
0
votes
2answers
114 views

Rails acceptace tests - stubbing out external service calls

I'm wondering if it's possible to stub out external services. I have the following call to external service in my app: bitly = Bitly.new("someuser", "123key") ...
0
votes
1answer
49 views

How do you test js redirects using Capybara?

In my controller a redirect is done using the following code: session controller def create render js: "window.location.pathname = #{home_path.to_json}" end But when I run capybara it doesn't ...
1
vote
0answers
45 views

Click overlay marker in google maps with capybara-webkit

Is there a way to click a google maps overlay with Capybara-webkit? (What about Capybara using silenium?) I want to test the content of the info window once the marker is selected. I also want to test ...
0
votes
1answer
125 views

shell script to run cucumber files

I have around 50 feature files and I want the tester team to run them. I don't want them to run all the files at once and also don't want them to get in the prerequisites for running cucumber ...
0
votes
0answers
28 views

dynamic step in web_step.rb for updating a table

i want a step to update a table with the value supplied by the user in one of the cucumber scenarios .the step is : Given /^I Update the (.+) field of the (.+) table by setting it as (.+)$/ do ...
1
vote
1answer
194 views

nested feature in capybara 2.0+

i want to do something like this: feature "sign-up" do before {visit signup_path} let(:submit) {"Create my account"} feature "with invalid information" do scenario "should not create a ...
0
votes
1answer
124 views

Does poltergeist support capybara's should_not RSpec matchers correctly?

According to capybara's README: The two following statements are functionally equivalent: page.should_not have_xpath('a') page.should have_no_xpath('a') However, when trying this out, that ...
1
vote
1answer
112 views

Enabling JavaScript for an rspec 2.10 Rails 3.1 view spec test

I'm writing an rspec 2.10 view spec for Rails 3.2.11. I have some JavaScript in the view that I'm testing that is critical to its behavior. I have been able to enable JavaScript testing in rspec ...
1
vote
1answer
274 views

Testing javascript on subdomain with capybara, phantomjs and rails

Solution This worked. The main essence is that I have to set the Capybara.server_port and Capybara.app_host and sign in manually in the sign in form. Capybara.app_host cannot be set with a dynamic ...
1
vote
1answer
167 views

Capybara's save_and_open_page with absolute paths for stylesheets and javascripts

I'm using rspec features with capybara for testing my rails 3.1 application. Sometimes it's useful to save the static html of a page we're breaking on and have a glance on it. That what the ...
2
votes
2answers
111 views

How do i clear my capybara steps using Page Object Pattern?

I have the following step definitions with Page Object Pattern gem 'site_prism': class Main < SitePrism::Page element :login_link, "a.log-in-link" element :login_field, ...
2
votes
1answer
75 views

Rails polymorphic relationship not propagating implicitly

I've got the following two classes class Car < Vehicle has_one :steering_wheel, as: :attached end class SteeringWheel < ActiveRecord::Base belongs_to :attached has_many ...
0
votes
1answer
89 views

use visit(…) with full url

I have an ERP app that uses multiple urls, in the routes files, which would be something like : constraints(host: /^admin\.domain$/) do # all private back office stuff in there end ...
0
votes
1answer
56 views

Read tooptip text using capybara

I am using tipsy gem for tooltip. How Can I read tooltip text using capybara?
0
votes
1answer
124 views

Capybara testing javascript failure to refresh .count

Using Capybara testing javascript alert in rspec. Why expect{ click_link "Cancel my account" page.driver.browser.switch_to.alert.accept }.to change(User, :count).by(-1) fails. Yet puts ...
0
votes
0answers
169 views

integration tests for devise password recovery using rspec, capybara and email_spec

I'm trying to test the password recovery using rspec/capybara using email_spec My test.rb contains: config.action_mailer.delivery_method = :test My test goes like this: feature User do ...
0
votes
0answers
53 views

Why rails integration test does not check for proper user right?

In our integration test for rails 3.2.12 app, there is a test case to open the create new user page which only admin has the right to do. Here is our rspec case (with capybara) which passes: it ...
0
votes
1answer
60 views

RSpec: Is there a setting to have js: true for all the specs?

Whenever a request spec fails, I use respec gem to rerun failed examples. When doing this, I want to activate :chrome as driver (instead of headless :webkit) so I can inspect the problem visually ...
0
votes
0answers
115 views

Undefined Method 'visit' after migrating to capybara from webrat in rails 3.2.12

We are migrating rails integration test to capybara from webrat. Replace response.should with response.body.should. Also added require 'capybara/rails' to spec_helper.rb. However there is an error ...
1
vote
2answers
61 views

How do I attach a file when the input.file has a dynamic id?

I have run into a snag with dynamic ids. The attach_file command needs the id name of the input type="file". The problem is that the id is dynamic (id="document_22") #indicating the 22nd document ...
1
vote
1answer
263 views

Configure Selenium - Capybara on Chrome

I'm using Chrome as my default user while testing with Capybara. What I want to do is configure that chrome instance so that it doesn't suggest remembering username and password on a login page. How ...
-1
votes
1answer
402 views

How to solve this Javascript error TypeError: 'undefined' is not an object (evaluating 't.subscribe')?

Following error occur when I am clicking on one item to open on web.Can anyone of us know solution? Error: test_inline_edit_an_item_app_built_via_app_builder(TaskFeature): ...
1
vote
4answers
1k views

undefined method `visit' when using RSpec and Capybara in rails

I can't get capybara working with rspec. It gives me this error: undefined method `visit' for #<RSpec::Core::ExampleGroup::Nested_1:0x16529f8 @example=nil> I know there are lots of posts ...
0
votes
0answers
95 views

Capybara + authlogic: session persistant

I have been searching exhaustively in StackOverflow, but can't find any appropriate solution. I am testing my javascript in a Ruby on Rails app, using RSpec + Capybara and Selenium driver. For ...
1
vote
1answer
68 views

How to organize rails integration/feature specs

For the controllers, I tested each action like: describe PostsController do describe "GET #new" describe "GET #edit" describe "DELETE #destroy" ... How do I organize my integration/feature ...
1
vote
2answers
128 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 ...
-2
votes
2answers
49 views

How to get an ip address of a website using capybara

I need to get an IP address of an web site. Give me your suggestion.
0
votes
1answer
207 views

RSpec::Expectations::ExpectationNotMetError in cucumber routing issue

I started working on BDD through cucumber. (using Rails-3, gem 'cucumber-rails') I want to redirect to user profile page (/users/id) when successful login. I defined in controller as (redirect_to ...
0
votes
0answers
37 views

One problematic route not testing properly

I'm using rspec-rails, capybara with poltergeist (phantomjs) for testing. I'm using Sorcery for authentication gem. I have only implemented the basic user model so far, and all my routes work except ...
0
votes
0answers
95 views

Problems with authentication in Capybara

I am testing a feature on a staging server that requires a basic authentication in order to access the site. I got it running by using the following: Capybara.app_host = ...
0
votes
0answers
65 views

How to solve Qt4 issues with Capybara-webkit on RHEL 5.5

I run into trouble, running capybara-webkit on a Jenkins server using Red Hat Enterprise Linux 5.5. I did follow installation instructions for capybara-webkit for CentOS 5.8 on this page: ...
0
votes
1answer
74 views

capybara use visit in a for loop

I have a code which tries to visit several web pages and add them to favorites. As I figure, once you use visit, capybara can't continue with the rest of the commands, check the code below; sub_menus ...
0
votes
0answers
47 views

How to make poltergeist support multitreading

I have request spec in which the user submits a form and then in the code I have: http = Net::HTTP.new(uri.host, uri.port) post_request = Net::HTTP::Post.new(uri.path, headers) ...
0
votes
2answers
149 views

ruby on rails 3 - undefined method `has_content?' for “HomePages”:String

i'm new to ruby and i just start my first project. when i'm trying to run my first test throught rspec i failed. this is my gemfile: source 'https://rubygems.org' gem 'rails', '3.2.12' gem ...
0
votes
3answers
83 views

How can I print the content of a <span> in Cucumber / Capybara?

I want to print the content of a error message that is situated in a span and looks something like this: <span>Es exisitiert bereits ein Account mit dieser E-Mail Adresse. Wenn Sie sich sicher ...
0
votes
1answer
95 views

How to get the hidden element values in capybara?

I need to get the value of a hidden element. I tried the following code: page.find(:xpath, "//span[@id='sample']").text it returns nil. give me your suggestions
0
votes
1answer
747 views

Attach file with Capybara - Element is not currently visible and > so may not be interacted with

I'm trying to attach file using Capybara. Input element is: <input type="file" multiple="multiple" name="uploadfile[]" style="position: absolute; margin: 0px 0px 0px -175px; padding: 0px; width: ...
0
votes
2answers
60 views

How to target localized button with RSpec and Capybara?

I am using RSpec and Capybara for Ruby on Rails testing. My Rails app is localized for a number of different languages (English, German, etc.). For example, I would like Capybara to submit a form ...
2
votes
1answer
54 views

How do I click a link in a row that meets specific conditions?

I wish to click a link that resides in the first table row that has some text in it. I tried the following within(all('tr').select {|elt| elt.text == "desired text" }.first) do ...
0
votes
1answer
155 views

Solve (Capybara::ElementNotFound) with simple form and cucumber

I'm using cucumber to test and I'm using simple_form for the contact form. I get the following error: Given I am on the login page And I fill in "student_name" with "sadik" Unable to find field ...
1
vote
0answers
71 views

Mouseover is not performed in cuucmber selenium

I have tried with the following codes but mouseover is not working. page.driver.browser.action.move_to(first(".aqqin-icontoolbar.aqqin-icontoolbar-share.first").native).perform ...

1 3 4 5 6 7 33