2
votes
1answer
23 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: ...
0
votes
1answer
44 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
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
votes
0answers
20 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
votes
2answers
23 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
1answer
120 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
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
66 views

Ruby on Rails - RSpec Javascript Test with Capybara (new to RoR)

New to Ruby, Rails and TDD. I'm using RSpec with Capybara and Capybara webkit. Trying to test if a div element exists on a page. Test Code: require 'spec_helper' describe "Login module" do ...
0
votes
0answers
36 views

Capybara content matcher reports: expected there to be text “foo bar” in “foo bar baz ”

I've got a failing capybara-webkit spec: expect(page).to have_content "foo bar" whose result looks like: expected there to be text "foo bar" in "foo bar baz " This failure actually occurs ...
0
votes
1answer
41 views

find('order-button', :disabled => false) raises ArgumentError: invalid keys

on the website that I am testing, the following happens: you click a button an ajax-call is executed, all input fields are temporarily disabled once the data is retrieved, the fields are filled in ...
0
votes
1answer
417 views

Capybara-Webkit: page.should have_content() not implemented?

I have recently attempted to use: Then(/^I should see "(.*?)"$/) do |arg1| page.should have_content(arg1) end To query the page and see if a text exists on the page. This worked fine with the ...
0
votes
2answers
137 views

Database Cleaner issue with Capybara webkit

I am using Cucumber to write my integration tests and Database Cleaner to keep my db clean. Everything perfectly works as my tests don't require Javascript. I can make these last tests pass using ...
1
vote
2answers
47 views

How to find the nth element that has a class of .foo in the document with Capybara/Nokogiri

I'm trying to find the n-th element that has a special class in a document. The elements are not necessarily children of the same parent. So for example <ul> <li><div ...
1
vote
0answers
63 views

Parsing element text with capybara-webkit

I'm new to Ruby and Capybara and I'm trying to use capybara-webkit to scrape a website. All of the data I'm interested in lies in td tags with certain properties. Where form is a particular form ...
3
votes
0answers
104 views

Rspec periodically hangs when using capybara-webkit with a page that loads an external script with async = true

I'm working on an application that uses uservoice. The uservoice snippet var uv = document.createElement('script'); uv.type = 'text/javascript'; uv.async = true; uv.src = ...; // external ...
0
votes
1answer
28 views

test for error-text that's associated with a field

In Capybara + Webkit + Ruby 1.9.3, I have the following HTML simple_form generates the following when there's an error on a specific field. I'm having trouble "getting at" the error-text span and ...
0
votes
0answers
61 views

Capybara-Webkit CSS Support

Im currently using capybara/rspec to test if a div is not visible (display: none), yet it seems this always returns true if the styles are defined in a CSS file rather than directly within the page. ...
1
vote
0answers
43 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
0answers
94 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
154 views

Capybara doesn't find select option

I'm doing some scraping from a remote host, using Capybara with the Webkit driver (driving a form that uses JS). The form is here. The issue is I can't manage to select options by text, Capybara ...
1
vote
0answers
33 views

Display @font-face Fonts in Capybara-Webkit

When I test my website using capybara-webkit and I take a screenshot, @font-face declarations in CSS are ignored. This is especially bad because I am using FontAwesome, so there will be major ...
0
votes
0answers
119 views

Capybara-webkit cant open page with visit

i'm new to Rails and I'm trying to make simple web scrapper based on capybara. But in the very beginning I've ran into error undefined method `[]' for nil:NilClass While using visit('/') ...
0
votes
0answers
114 views

alternative to find_field('doc-name').native.send_keys(:tab) in capybara-webkit

the :selenium driver in capybara allowed me to write: find_field('doc-name').native.send_keys(:tab) is there an equivalent construct with the :webkit driver? I am trying to tab away from a field, ...
0
votes
0answers
50 views

Strange, machine-dependent qtkitserver error with Rspec, Capybara, and webkit

I've been successfully using webkit as my javascript driver for Capybara for several months now without issue. Recently I upgraded my app to 3.2.11 and, while I"m not sure if it's a coincidence or ...
1
vote
1answer
253 views

Capybara 2 having trouble interacting with Bootstrap modals

In a Rails application I'm trying to test a Bootstrap modal with a jQuery TokenInput field in Rspec using Capybara and the Capybara-webkit Javascript driver. The portion in question is as follows: ...
1
vote
2answers
146 views

Why is RSpec/Capybara not showing where errors occured

I'm using Capybara with webkit for my testing, but for some reason when a test fails it shows the error, but not where it actually occurred in the code. Failures: 1) online shopping - sign up ...
0
votes
2answers
318 views

Element not found error when using Capybara webkit but the test runs fine in non-headless mode

I am trying to run a simple google search test in the headless mode using Capybara-webkit. I have set the drivers as in env.rb file: Capybara.default_driver = :webkit Capybara.current_driver = ...
1
vote
3answers
175 views

Use same browser window in cucumber

In my features file, I have something like this: Background: Given I am on login screen Then I log in Scenario: Given I am on a random account summary when I try feature-1 Then I see some ...
0
votes
1answer
415 views

Why do I get blank pages with Capybara-webkit, but not with the standard (non-JS) driver

My Rspec + Capybara integration tests were working fine until I started trying to interact with Javascript-dependent interface elements using Capybara-Webkit. When I try to use Capybara-Webkit, I get ...
0
votes
0answers
84 views

Webkit-server is spawned as a zombie process when used as a background service (using delayed_job)

I got Timeout Error when doing Capybara.visit() when using a with a delayed_job due to webkit_server appearing as a zombie process. Here's more detail: I used Capybara to crawl some website with ...
3
votes
1answer
161 views

Test loading message content before AJAX request is completed with Capybara

I see a lot of questions and answers about Capybara not waiting for an AJAX request to complete before testing for content, but I need to do the opposite: I want to test that a loading message is ...
0
votes
1answer
316 views

Rspec capybara spec fails when invoked via 'rake spec' but passes when invoked via 'rspec spec'

I've tried the answers to these questions: 1, 2. The first one indicates it might be a caching issue (and suggests running rake tmp:clear). The second one suggests forcing ENV['RAILS_ENV'] = 'test' in ...
0
votes
0answers
102 views

'Connection closed' error using capybara and capybara-webkit

I am using capybara-webkit against our web application. The index page loads several iframes; in our test environment, two of those iframes fail to load. Because of those iframes, capybara-webkit ...
1
vote
0answers
97 views

capybara-webkit doesn't run test anymore

I just updated Capybara (0.13.0) and Rspec (2.12.0) and now my capybara-webkit tests only work about 1/5 of the time. By "not work", I mean the contents of the test isn't run at all. It just freezes ...
1
vote
1answer
116 views

Check why ruby script hangs

Sometimes my specs can just hang and I have to kill the corresponding ruby process. It's quite common when I run integration specs written with capybara and webkit driver. Is it possible to inspect ...
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 ...
0
votes
1answer
207 views

instantiate capybara browser and set a proxy

Following this documentation I'm trying to instantiate a capybara browser and set a proxy b = Capybara::Driver::Webkit::Browser.new b.set_proxy :host => 'localhost', :port => 8888 ...
3
votes
0answers
95 views

Capybara-Webkit close webkit_server

I am using Capybara-Webkit to automate some work on a website. This is done in the background in a Resque task. After some executions there are quiet a lot webkit_server processes, that weren't closed ...
0
votes
1answer
147 views

Get image file using ruby & capybara

It is image tag on the page accessed by capybara via HTTPS protocol: <img src="path"> Is it any way to get image file from the page using capybara with any kind of driver? I can not use ...
0
votes
0answers
54 views

Capybara -> how to use the result of native method

using page.find( 'some-element' ).native consistently returns a string, say '4'. Documentation states it returns some object that allows me to access native methods. Anyone ever run into this? ...
0
votes
0answers
50 views

test post form in a frame with target _parent in capybara-webit

I'm testing a form inside an iframe with target="_parent" with : within_frame(framename) do fill_in("login", value) click_button("Send") end In the click_button step it's raise the error: ...
0
votes
1answer
260 views

Cannot connect to X server error capybara-webkit in ubuntu

Need help. Scripted in ruby (Not rails) and capybara-webkit gem used. Checked both on EC2 and Linode and this error persists. webkit_server: cannot connect to X server ...
3
votes
1answer
725 views

Error while building native extensions for capybara-webkit

I'm trying to install the webkit driver for capybara on Windows, and I'm getting the following error: $ gem install capybara-webkit-0.12.1.gem Temporarily enhancing PATH to include DevKit... Building ...
1
vote
0answers
296 views

Caching issue when running Cucumber features with capybara-webkit

I've written a feature that tests whether some content appears on a page. The content is loaded dynamically via AJAX and the scenario is annotated with @javascript. The weird part is: If I set ...
3
votes
2answers
726 views

How to test a Select2 element with capybara DSL?

I have a Select2 element on a page that loads results via ajax. Would like to test this with capybara/rspec (using the poltergeist driver), but since the Select2 element actually starts out as a ...
1
vote
1answer
1k views

rails bundle error - capybara-webkit - Failed to build native extension

trying to run bundle (existing app, new machine running Ubuntu 12.04). Installing capybara-webkit (0.12.1) with native extensions Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem ...
1
vote
1answer
398 views

Failed to build gem native extension when Installing capybara-webkit (0.12.1)

I can't install the Capybara Webkit Driver as I receive this error: Installing capybara-webkit (0.12.1) with native extensions Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native ...
1
vote
1answer
321 views

Capybara-selenium fault and redirect example.com/ when without everything is green

When I run test with gem 'selenium-webdriver' (with "describe "with valid information", :js => true do") spec/request/post_pages_spec.rb require 'spec_helper' describe "Post pages" do subject ...
1
vote
1answer
117 views

Why I get blank pages when using selenium/webkit with capybara?

I'm trying to test my cucumber scenarios with capybara and selenium but I get blank pages all the time. I read this: Capybara + RSpec only sees blank pages in controller specs. Why? But It's not ...

1 2