Capybara is a web application testing framework for Rack applications, such as Rails, Sinatra and Merb.
0
votes
0answers
3 views
Why does using the protected_attributes gem with Rails 4 rc1 break my Cucumber/Capybara tests?
All of my tests were passing except 1 complaining about forbidden attributes:
Given I am logged in # features/step_definitions/user_steps.rb:94
And I have the admin ...
0
votes
0answers
19 views
ActionView template error when testing app
I'm trying to test this method that redirects to an external URL. It keeps raising an ActionView::Template::Error. But the action is not meant to render a template. It's meant to redirect.
def ...
0
votes
2answers
14 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 ...
0
votes
1answer
5 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
15 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 ...
0
votes
1answer
17 views
Capybara select from dropdown
I'm trying to select an option from a dropdown menu in a cucumber test using Capybara.
The HTML looks like this:
<select id="answer_sheet_test_prep_number" ...
0
votes
1answer
29 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 ...
0
votes
0answers
10 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 ...
0
votes
1answer
15 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
15 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 ...
0
votes
1answer
12 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 ...
0
votes
2answers
29 views
Capybara: within() doesn't wait for an AJAX request, find() does?
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 ...
0
votes
1answer
27 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 ...
0
votes
2answers
26 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, ...
-1
votes
2answers
17 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, ...
1
vote
1answer
20 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
19 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
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
1answer
10 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
20 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
31 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
vote
0answers
25 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 ...
1
vote
2answers
55 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
1answer
28 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
0answers
22 views
How to define a feature in cucumber for more than a site?
I just wanted to test my autocomplete feature, but I'm new to Cucumber and I don't know how to efficently write this feature for more than one site.
The problem is that I have to visit various sites ...
0
votes
1answer
22 views
converting to devise - capybara::ElementNotFound:
I am in the process of converting my user authentication from scratch to the devise gem. All is completed and appears to be working fine. I changed my rspec tests over, but I have one recurring ...
1
vote
1answer
27 views
How to serve static files with capybara and cucumber
I want to run acceptance tests for an rss feed reader and I need an URL to an atom or rss feed. Ive got a small file which contains my sample atom/rss and i want to access it from a locally running ...
2
votes
1answer
40 views
Rails: Delete request in capybara, bug or my mistake?
I'm a noob at Rails so please correct me if I'm wrong. In Michael Hartl's Rails Tutorial (Rails 3.2), in Listing 9.52:
describe "when signing in again" do
before do
delete ...
0
votes
1answer
47 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
76 views
Rails 4, RSpec, Capybara & webkit_server
I'm trying to use Rspec with capybara-webkit on a Rails 4 project and I'm getting an error to go with Capybara.default_host not being set properly.
The webkit_server is installed properly and is in ...
0
votes
2answers
28 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
0answers
20 views
post(path, parameters = nil, headers = nil) not working in Rails Integration test
I am writing a Rails Integration test case with Capybara, I am testing a basic functionality of posting some values at a particular path, But it isn't working, I am testing with debugger on to that ...
0
votes
0answers
13 views
How can I access flash (.swf) elements using capybara
Can I access flash elements(.swf) using capybara
Consider My web page having text box, Check box, options and submit box within the flash content (.swf) and I need to access those elements and I need ...
0
votes
1answer
30 views
How to choose a radio button when the radio buttons have the same id but have different values using capybara
Below is the html code for two radio buttons, they only differ by "value" attribute
<input id="AmountOption" name="AmountOption" type="radio" value="1">
<input id="AmountOption" ...
0
votes
1answer
34 views
rspec and capybara “should find” shorthand
Is there a shorthand for find like there is for have_selector?
For example I can write:
it { should have_selector('h1', text: 'Welcome') }
Is there a similar shorthand for the following?
it ...
0
votes
1answer
45 views
Capybara assertions fail under Poltergeist
I have the following spec:
# MUST BE TESTED WITH JAVASCRIPT. As you can see before, it is allowing
# the Log Out link. On a real page, that element is hidden.
it "logs out a user" do
user = ...
0
votes
1answer
22 views
launchy gem terminates tests
I've got a simple spec
describe "Workers" do
describe "user attempts to view workers" do
context "admin logged in" do
end
context "non-logged in user" do
before do
visit ...
0
votes
0answers
19 views
Cucumber+Capybara+Rails doesn't render models
I have Model Product and I render it with <%= render @products %>. I have template _product.html.erb wich contains <%= link_to product.name, product %>. When I visit this page in browser ...
2
votes
3answers
108 views
Rails: RSpec - undefined method `cookie_jar' for nil:NilClass
Rails newbie. Trying to follow Michael Hartl's tutorial.
Stuck trying to add a helper method to simulate log in an RSpec test:
describe "when the a user has logged in and attempts to visit the page" ...
0
votes
1answer
53 views
Can't sign in with FactoryGirl's user/data
I have to sign in the user before doing my tests which will use JS. The sign in page does work (except on this test).
require 'spec_helper'
require 'capybara/poltergeist'
include Capybara::DSL
...
1
vote
1answer
12 views
Capybara: make sure that a link is hidden after an AJAX request without testing the implementation?
I'm a bit unsure about this. Here's my spec:
it 'hides the "Load more" link when the last page is reached', js: true, focus: true do
within "table.#{model.model_name.underscore.pluralize}" do
...
0
votes
1answer
32 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
74 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
1answer
25 views
How do I drag and drop using poltergeist?
Right now I'm using the selenium driver with Capybara, but I'd like to switch to using Poltergeist. A lot of the interface I'm testing, though, involves dragging and dropping elements in particular ...
0
votes
1answer
26 views
Twitter bootstrap tooltip and Capybara
I'm running capybara and I keep getting this error bellow
✔ When I visit the agreement templates page
! And I follow "New Agreement Template"
~ And I fill out and submit the form
...
0
votes
2answers
37 views
ruby code + string with capybara text
I have this tag <p> with the next content:
<p id="post_example"> <%= t (".for_example_type") %> <strong><%= post.title %></strong></p>
In my integration ...
0
votes
0answers
39 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
2answers
41 views
Failure/Error: assigns(:posts).should eq([post])
post_controller_spec.rb
require 'spec_helper'
describe Blog::PostsController do
let!(:posts) { FactoryGirl.create_list(:post, 3) }
let!(:post) { posts.first }
describe "GET index" do
it ...
0
votes
1answer
24 views
Using poltergeist with a proxy?
I'm using PhantomJS and poltergeist to emulate a browser, however I'm not sure how to specify a proxy to use in the code:
require 'capybara'
require 'capybara/dsl'
require 'capybara/poltergeist'
...


