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

learn more… | top users | synonyms

0
votes
0answers
7 views

Why can't I populate a login form with a FactoryGirl.create(:user)?

I'm trying to test a login form with FactoryGirl, Rspec, and Capybara. I can test the signup form by running FactoryGirl.build(:user), but I can't login a user that is created by Factory Girl with ...
5
votes
3answers
533 views

rspec ignores skip_before_filter?

We are having a strange problem. In the application controller we have a before_filter set that requires authentication using devise and redirects if needed to the login page. In our library ...
0
votes
0answers
10 views

Is it possible to take a screenshot of the whole page with Selenium/Capybara?

PhantomJS has the option of taking a screenshot of the whole page (not just the current viewport). Is there any way to do so using Selenium? I am running the Cucumber/Capybara tests headlessly, using ...
0
votes
1answer
17 views

Ruby: Make a selection from a drop-down list box

I am writing scripts in Ruby that supports Capybara. I will have to select a value from a dropdown list box and I am using "xpath" to find the element and make the selection. The code is given below: ...
0
votes
1answer
16 views

Capybara 2.0 and rspec-rails — helpers don't work in spec/features

I'm trying to use a method from a helper module, but rspec doesn't seem to recognize helpers for tests under spec/features. Note that the only change to spec_helper.rb was adding require ...
0
votes
1answer
9 views

Rspec test describing listing items on index failing

Rspec/TDD beginner. I have a spec that is failing and I don't know why. Everything works in the browser as it should. I am using Kaminari for pagination, which defaults to 25 items per page. spec: ...
2
votes
0answers
19 views

Why do a series of specs fail when each single spec succeeds?

On Capybara 2.1.0 with Rspec 2.12.0: If I run $ rspec spec/features/user_sees_leaderboard_spec.rb, the spec passes. If I run $ rspec spec/features/*, the test fails, claiming: ...
10
votes
4answers
2k views

Unable to obtain stable firefox connection in 60 seconds (127.0.0.1:7055)

While testing scenario by cucumber i'm getting the following error when running rspec tests unable to obtain stable firefox connection in 60 seconds (127.0.0.1:7055) ...
2
votes
2answers
450 views

rails3-jquery-autocomplete: how to test with RSpec and Capybara?

I'm using Rails 3.2.8 with gem 'jquery-rails', '2.1.2' gem 'rails3-jquery-autocomplete', '1.0.9' gem 'rspec-rails', '2.11.4' gem 'capybara', '1.1.3' gem 'capybara-webkit', '0.12.1' I've recently ...
1
vote
0answers
10 views

have_field seems to behave differently for cuke with @javascript tag versus scenario without

I want to use Capybara v2.1 in a Cucumber test to validate that this field does not have any characters entered: <input id="user_password" name="user[password]" size="30" type="password" /> ...
0
votes
1answer
49 views

Most performant way to execute JS within a webpage in Ruby (HtmlUnit, Celerity, PhantomJS, CasperJS …)

What's the most performant way to execute JS directly after a HTTP request in JRuby? I know about all the test frameworks like HtmlUnit, Celerity, Capybara + PhantomJS == Poltergeist, CasperJS etc. ...
0
votes
0answers
15 views

Rspec Capybara ActiveAdmin error rendering nested models paths

I have a capybara test in order to test the creation of a nested model For example I have these two resources: ActiveAdmin.register Campaign do ActiveAdmin.register PublisherCampaign do ...
0
votes
2answers
46 views

Why doesn't Capybara raise exception when block is passed to find() but raises one when block is passed to within

We are having some troubles with our AJAX specs and within / find. I'd like to do the following: it 'allows to load more search results if there are any', focus: true, js: true do fill_in ...
4
votes
3answers
3k views

How to emulate mouse hover with Capybara

Basically, what I'm trying to do is click on a button that becomes visible when hovering another element (its parent). I have tried to use trigger.('mouseover') on the parent of the hidden button, ...
3
votes
1answer
181 views

Multiple Capybara wait times?

I want to have different Capybara wait times in my code depending on how much time they usually take to load completely? Do I have to repetitively keep changing the Capybara.default_wait_time or is ...
0
votes
3answers
16 views

capybara choose multiple radio buttons

I'm running Capybara tests, and I'm stuck on the following test: page.all("input").each do |s| if s.value == "E" choose(s) end end click_button "Save answers" end I have over 500 ...
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
1answer
81 views

Cucumber: Tables were not identical (Cucumber::Ast::Table::Different)

i am using cucumber for testing the scenario. I am getting error as: Tables were not identical (Cucumber::Ast::Table::Different) when using diff! in my code. Then /^the results should ...
0
votes
1answer
21 views

Efficiently using Rspec/Capybara to fill out each phase of a form

I'm using rspec and capybara to do some testing for some form-paths we have, but it's developed in PHP, so just looking for HTML. So in order to get to the next question of the process, I have to ...
1
vote
1answer
667 views

Why i can not get current_user while writing test case with Rspec and Capybara

I have to write integration test case for my one feature listing page and that feature index method has code like below def index @food_categories = current_user.food_categories end Now when i ...
0
votes
1answer
12 views

Capybara Poltergeist get element text

I've got a line of code that can will get the contents of an element on the page with any driver but poltergeist. Is this expected behavior for poltergeist and if so, how can I do this in a way that ...
0
votes
1answer
18 views

Trigger event on first element matching a class in Capybara test

Is there any possible way to select first image from a list of images < a class ="image">....</a> < a class ="image">....</a> < a class ="image">....</a> while ...
1
vote
1answer
127 views

Errors getting Selenium running on rails 4 with Safari, chrome or Firefox

I am trying to get selenium (thru Capybara) working on a rails 4, ruby 2.0.0 environment using rspec. I have tried using every browser by setting config settings in my spec_helper.rb. Example with ...
0
votes
1answer
38 views

Mouse Hover in selenium Ruby using capybara [duplicate]

Searching from many forums i got the code to hover the mouse over an element .I want to hover the mouse over a thumbnail image. i put html element ".thumbnail" as class inside find_element method .I ...
1
vote
0answers
41 views

Error when Parsing Pdf in selenium webdriver ruby

I am trying to parse online pdf through automation testing in selenium webdriver ruby.I tried to do according to this url "http://blog.bitcrowd.net/test-rails-pdf-output-with-cucumber/". I am ...
18
votes
5answers
5k 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 ...
0
votes
0answers
16 views

Poltergeist doesn't load on feature spec, unless using js: true?

When using poltergeist edge, I'm only able to access its methods when passing js: true to feature specs: scenario "Worst case", js: true do ... end Though I now know scenario() is supposed to not ...
1
vote
1answer
18 views

Completely remove Rspec, Capybara & Factory-Girl

I've been following the Rails tutorial but decided that ultimately I want to remove Rspec, Capybara and Factory-Girl gems as well as all the generated files, however I have no clue how to do this. I ...
5
votes
2answers
4k views

Ensure an element is not present with Capybara

Using Capybara, I need to assert that a form element is not present, for example, 'Then I should not see the "Username" text field'. As find throws an exception if the element isn't found, this is the ...
0
votes
1answer
60 views

Capybara returns gibberish

I'm trying to use Capybara to select a row within a table containing a particular name. Unfortunately, Capybara only seems to see gibberish in the table. Here's what I get for the following code: ...
-1
votes
2answers
20 views

capybara within :css syntax meaning

I'm currently working on fixing up some specs, and have found a piece of syntax that nobody seems to know what represents. In the Capybara Suite there are multiple occurrences of: within(:css, ...
0
votes
2answers
27 views

How can I tell Capybara to find the 1st, 2nd, or 3rd button?

I have a subscription screen in my app. There are 5 different choices, and therefore 5 different buttons. It's data-driven so there could be 1 or 10 or whatever. n choices. In writing a request spec, ...
12
votes
2answers
2k views

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 'Your name', with: 'John' I'd like to check the value it has before filling it in and can't figure it ...
0
votes
1answer
19 views

Updated to Capybara 2.1.0.rc, now having trouble with current_path in my feature specs

So it seems like I've used current_path many times in request specs. However, Capybara now requires specs to be in the features directory in order to use the Capybara DSL (page & visit) # ...
-1
votes
0answers
19 views

Hover the mouse over thumbnail image in capybara [duplicate]

I have a thumbnail image on a page. When hovering mouse over the thumbnail I have to display a hover modal. But I can't figure out how to hover mouse over the thumbnail image. I can test it using ...
1
vote
2answers
62 views

How to test for non existing html tag in rspec/capybara

For a controller delivering some html snippet (used as ajax call), I have a view spec looking like that: it "should not contain html element" do render rendered.should have_selector('div') ...
1
vote
3answers
989 views

Capybara not finding form elements

It is the first time I'm trying out Capybara, and I can't seem to find why it can't find my form elements. Every time I try to find a form element, When /^they submit a resolution in Markdown$/ do ...
1
vote
1answer
111 views

Cucumber/Capybara testing with x-tag

I'm testing the app I'm creating with Cucumber/Capybara. It looks like it doesn't see the x-tag I am using. It looks like Cucumber doesn't render the page properly with the x-tag. Is there a way to ...
0
votes
1answer
14 views

what to set in Capybara.app for a Middleman project?

In the env.rb to use Capybara you should setup Capybara.app = something Middleman is based on sinatra so I was thinking to use Sinatra::Application but gives an error Anyone know what should be put ...
0
votes
1answer
34 views

Capybara/Poltergeist causing unexpected results in request spec in Rails 3.2 app

Is there an alternative I can use to Capybara's save_and_open_page? I have written a request spec that test the user signup form. Upon successful signup, which this test should yield, this test should ...
10
votes
5answers
3k views

RSpec & Capybara 2.0 tripping up my have_selector tests

Trying to test that page contains <title>My Title</title> with: # spec/features/reports_spec.rb require 'spec_helper' feature "Archive Management" do subject { page } describe ...
0
votes
3answers
56 views

Capybara skipping over a click_button

I have a test that fills out some fields and then is supposed to click a button. This is all done after loading up a modal window. However, it seems that it just skips over it and doesn't click the ...
2
votes
1answer
26 views

Can't fill in any hidden elements in Capybara when ignore_hidden_elements is true

I'm writing some feature tests using Capybara, for pages that involve lots of javascript refreshes (the url will stay the same when a user clicks a "continue" button, but hidden content will be shown, ...
0
votes
0answers
25 views

Capybara features outside of /features directory

I have some large end-to-end integration tests that for CI purposes I don't want in my spec/features folder in Capybara. Instead I have them in a spec/integration folder. Knowing that Capybara loads ...
0
votes
2answers
31 views

Running Capybara tests at a different url when on Travis CI

I have some integration tests written in Capybara which I'm running on Travis. In the tests I hit a hardcoded url (given by Pow and symlinks) with the visit method. This of course does not work well ...
0
votes
1answer
12 views

Getting Rspec to Recognize Macros for Capybara's Specials

When adding macros to Rspec's config, you have to specify the type of test it'll be accessed by. For instance, you might type: config.extend ControllerMacros, :type => :controller How do you get ...
0
votes
2answers
2k views

Selenium::WebDriver::Error::WebDriverError:

I am trying to run some acceptance tests for javascript code. However, when I tried using Capybara with Selenium, I kept getting the following: >> Thin web server (v1.3.1 codename Triple ...
1
vote
1answer
30 views

Determining what requests happen after UI interaction with Rails, Capybara

I'm using Capybara for web crawling, and I have the following challenge: after I interact with some DOM elements (e.g. click a button), I want to know (or make a good guess) if a new page is loading ...
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
42 views

Capybara FactoryGirl Carrierwave cannot attach file

I am trying to test my application with cucumber and capybara. I have the following step definition: Given(/^I fill in the create article form with the valid article data$/) do @article_attributes ...

1 2 3 4 5 33