Poltergeist is a Capybara driver for PhantomJS.

learn more… | top users | synonyms

0
votes
0answers
7 views

How to get the current request method in Poltergeist?

I'm writing tests for standard restful actions in Rails using Capybara with Poltergeist/RackTest. So, for example, I want to test if a Quiz was created and if I got redirected to the right page. The ...
0
votes
0answers
8 views

Datatables.net and rspec, test finish processing

I'm using capybara and phantomjs (poltergeist). Seems that with that driver capybara is not always waiting until ajax processing is finished so I'm geting red specs randomly. Is there any way to ...
0
votes
1answer
46 views

Undefined method for save_screenshot for Capybara and Poltergeist

I'm using capybara (1.1.4), poltergeist (1.0.2) and rails (3.2.13). I'm trying to take a screenshot to debug some errors I'm getting. However, both the capybara and poltergeist save screenshot methods ...
1
vote
1answer
45 views

Capture video with Poltergeist, PhantomJS and Capybara

Is it possible to capture video with PhantomJS in combination with the gems Poltergeist, Capybara and Cucumber? I have used the Headless gem previously, which put a video in a specific folder in case ...
1
vote
0answers
31 views

Testing click event with Konacha/Poltergeist (and Rails)

I have Konacha running with the Poltergeist driver in my config/initializers/konacha.rb file. I've made sure that I set config.driver :poltergeist in that file. I'm having trouble getting Poltergeist ...
0
votes
0answers
53 views

can't setup capybara + poltergeist due to different failures when starting phantomjs browser

Experiencing problems setting up capybara + poltergeist on Windows 7, Ruby 1.9.3-p392 . Setting up as described in manuals: 1. Downloading PhantomJS (tried 1.7.0, 1.8.2, 1.9.0), extracting, adding to ...
0
votes
1answer
38 views

create a post request using poltergeist and capybara

I'm transitioning from Capybara backed by the default Rack driver to Capybara backed by Poltergeist. For frustrating reasons, I need to manipulate session data before loading a page. But I couldn't ...
0
votes
1answer
37 views

Is there a way to test Server Sent Events in Rails 4 with Cucumber/Capybara/Poltergeist?

I have Rails 4 with ActionController::Live, I have everything working properly and I have text writing to the screen. I have done a lot of searching and looking for a capybara driver that can handle ...
0
votes
1answer
29 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
0answers
36 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
31 views

How do I set the accept language header when using poltergeist?

I am trying to added a non-english language for a test using capybara and poltergeist. I have tried: page.driver.headers = { 'HTTP_ACCEPT_LANGUAGE' => 'pt-BR' } But that is not working. On the ...
0
votes
1answer
55 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 ...
1
vote
2answers
71 views

Testing responsive design with poltergeist (phantomjs)

I'm using Twitter Bootstrap and poltergeist. I'm trying to hide some elements for mobile resolutions, for example: view: <th class="hidden-phone">Email</th> .... css: .hidden-phone { ...
0
votes
1answer
94 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
79 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 = ...
1
vote
1answer
77 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
44 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
0answers
136 views

NoMethodError: undefined method `result' for #<NoMethodError: undefined method `fields' for nil:NilClass>

I am having the following error randomly when running rspec with capybara and poltergeist: NoMethodError: undefined method `result' for #<NoMethodError: undefined method `fields' for ...
0
votes
1answer
42 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' ...
0
votes
1answer
74 views

Rails Capybara Test has empty Instance Variable

I have a controller sending in a list of vendors to my controller, and on normal view it's working fine. class VendorsController < ApplicationController respond_to :html, :json def index ...
0
votes
1answer
140 views

Correct way to close capybara (with poltergeist/phantomjs)

I'm runnning a lot of jobs through capybara on my linux server. I'm using the poltergeist phantomjs driver. After A while I'm getting a lot of these errors: Errno::EMFILE Too many open files - ...
0
votes
1answer
58 views

VCR Sharing requests between cassettes?

My VCR config is: VCR.configure do |c| c.configure_rspec_metadata! c.cassette_library_dir = 'spec/cassettes' c.hook_into :webmock c.ignore_localhost = true end And a test example is: it ...
0
votes
0answers
67 views

Intermittent errors running cucumber tests with capybara and poltergeist on jruby

When running cucumber 1.1.9 tests using capybara 2.0.2 and poltergeist 1.1.0 on jruby 1.7.3 I see intermittent errors like the following: Scenario: Recover username for a valid email ...
2
votes
1answer
507 views

capybara-webkit cannot simulate click on (non link/button) element

In an rspec feature scenario I have: scenario 'shows things', js: true do page.find('#my_div').trigger(:click) This doesn't seem to fire the jQuery handler that's on the click event of this ...
0
votes
0answers
115 views

Running jasmine specs headlessly with phantomjs

I have been using jasmine-headless-webkit to run my jasmine specs on my Rails 3.2 app, but I recently switched over to phantomjs/poltergeist to run my request specs, so I am needing to upgrade my ...
0
votes
1answer
40 views

Poltergeist Rspec If-None-Match If-Modified-Since headers

I have a feature spec that makes two visit requests to the same url. The expected behavior is that the second request should return a 304. This is not happening however. I have set the ...
4
votes
1answer
245 views

NotImplementedError when switching to Poltergeist

I have this cucumber step definitions that work with Selenium but I get NotImplementedError when I try them with the poltergeist driver. phantom.js is installed and I can even take screenshots from ...
0
votes
1answer
93 views

Feature Testing with Filepicker.io and Capybara

I am currently working on feature testing a Filepicker.io upload form and cannot get a the file upload to work. I am using the Poltergeist driver for Capybara and from the debugging I have been able ...
0
votes
3answers
191 views

Downloading file to specific folder using Capybara and Poltergeist driver

I am writing my acceptance tests using Capybara and Poltergeist driver.I need to validate the content of the CSV file downloaded. I tried various ways of rendering the content on the page itself ...
0
votes
2answers
374 views

Capybara, Poltergeist and Phantomjs and giving an empty response in body

I am getting am empty document back from phantomjs. I am trying to use Capybara and Poltergeist for setting up the phantomjs driver for Capybara. I created a module as follows and included it in the ...
0
votes
1answer
186 views

RSpec, Capybara and an ajax request with rails

So I have javascript method in my view that looks like this: window.getWeatherData = function () { $.getJSON('/weather.json?building=RSF', function (response) { console.log(response) ...
1
vote
1answer
56 views

Can I monkey patch the phantomjs browser api with execute_script?

Im trying to test an application with some native JavaScript features disabled e.g. querySelector ... So I thought this might work before the call to visit: ...
0
votes
0answers
119 views

Poltergeist + PhantomJS + SignalR

i'm using Poltergeist + PhantomJS + Capybara for UI testing of our webapp...i have encountered a problem during login to our webapp, SignalR connection remains open and Poltergeist ends with time out. ...
0
votes
1answer
52 views

fail test on unhandled exceptions in Poltergeist

When I add some junk to application.js I get following error from Poltergeist: Capybara::Poltergeist::JavascriptError: One or more errors were raised in the Javascript code on the page. If you don't ...
0
votes
0answers
65 views

Capybara and Rspec are not showing 404 errors caused by AJAX calls

I'm using Capybara 2.0.2 with Poltergeist 1.1.0, Rspec 2.12.0 and Spin 0.6.0. My problem is that errors like 404 errors are not shown in the rspec output. Since I am using Backbone.js most of the ...
1
vote
0answers
214 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
1answer
147 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 ...
5
votes
2answers
107 views

send_keys support for Poltergeist?

I want to switch from Selenium to Poltergeist but I need to simulate a barcode scanner that looks like keyboard entry to the <body> tag. I use this code with Selenium: ...
-1
votes
1answer
559 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): ...
0
votes
0answers
49 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) ...
1
vote
1answer
90 views

Poltergeist toggle proxy during test runtime

We are just migrating from capybara-webkit to Poltergeist. Previously we did use capybara-webkit with puffing billy as you can see here: def use_proxy_with_vcr cassettes_name = nil, cassettes_options ...
2
votes
1answer
407 views

angular.js and phantom.js error

I am getting an error when i try running phantomjs via this stack: rails (3.2.11), rspec (2.12.2), capybara (1.1.4), poltergeist (1.0.2), phantomjs (1.8.1) and angular.js (1.1.2). I have many specs ...
2
votes
2answers
330 views

@javascript cucumber tests pass using selenium driver but fail when using poltergiest

I'm trying to test an jquery UI autocomplete, I've got the tests passing using the selenium driver. I want to switch to poltergiest for some headless testing, but now my tests are now failing. It ...
1
vote
2answers
126 views

Test just hangs when I call page.driver .render (using phantomjs, capybara and poltgergeist)

I'm getting frustrated with this issue.. I have a Test::Unit test.. using Capybara + Poltergeist + PhantomJS.. trying to take a screenshot.. But when I call it.. page.driver.render ...
0
votes
1answer
404 views

Getting capybara/cucumber and poltergeist to work with twitter bootstrap modal dialog box

Context: I'm testing a rails app with Cucumber/Capybara/PhantomJS/Poltergeist. I have a click_link call in one of my cucumber step definition files. This click_link call then results in Rails ...
0
votes
0answers
123 views

8 out of 599 Default Poltergeist Rails Gem Tests Fail - What do these messages mean?

So I've been trying to make sure I have poltergeist and phantomJS installed correctly with rails 3.2 so I can use it with cucumber/capybara tests. I forked and then cloned the poltergeist gem. I ...
4
votes
2answers
287 views

How can I write javascript tests that don't timeout or fail randomly with rspec, capybara, and poltergeist?

I have been having problems with my tests timing out and failing randomly. I have been looking around for best practices of how to write robust capybara integration tests but I don't find anything ...
0
votes
1answer
149 views

Capybara Poltergeist - Site shows message to enable cookies

I am running Capybara 1.1.2 with Poltergeist 1.0.1 for headless testing. The test runs fine with selenium driver. However with poltergeist, the site snapshot states that cookies are disabled. Am I ...
1
vote
0answers
161 views

How do I get my Capybara spec to create database records, login with Google, and then see those records displayed?

Question: What do I need to set up in order to write RSpec/Capybara tests which involve logging in with Google and interacting with the database somehow (either through the app or in code), and then ...
5
votes
2answers
191 views

Rspec Options for testing rails app

When running a spec I am getting all the output of the database transaction as well: lee$ rspec spec/mailers/ Connecting to database specified by database.yml (0.1ms) BEGIN User Exists (0.7ms) ...

1 2