Tagged Questions
0
votes
1answer
34 views
Capybara: Unable to find form field with js: true
I wrote some tests using capybara for request testing using poltergeist and phantomjs as javascript driver.
The following steps for filling in a login form works great without js:
it "signs in" do
...
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 ...
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 ...
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
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 ...
0
votes
2answers
48 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
69 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
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
141 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
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
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
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. ...
1
vote
1answer
356 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 ...
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 ...
7
votes
0answers
292 views
screenshot of specific dom element using ruby
Is there a way to do this http://casperjs.org/api.html#casper.captureSelector using capybara+phantomjs. Or perhaps, more complex, crop a full page screenshot to the specific dom element?
1
vote
1answer
154 views
Including Capybara::DSL crashes all of my tests with wrong number of arguments
I am still trying to resolve the fundamental issue outlined in this question: Rails Phantomjs, poltergeist, and Capybara not playing well together
Basically all of my tests are running fine, but I ...
3
votes
3answers
2k views
Rails Phantomjs, poltergeist, and Capybara not playing well together
Working in a rails 3.1.2 project (mac OS X), I have PhantomJS properly installed (I can run code like the following and it works perfectly, accurately grabbing the title of the page and saving an ...
0
votes
0answers
210 views
Poltergeist/PhantomJS redirects to root URL
I've been trying to test a mouseover event for a tooltip popup on my site. I run rspec on my test but the test always fails. After a bit of investigating I found that the request is being redirected ...
0
votes
1answer
171 views
Capybara poltergeist phantomjs JavascriptError on Audio
I'm getting an exception:
Capybara::Poltergeist::JavascriptError
And a debug output:
"args"=>[[{"message"=>"ReferenceError: Can't find variable: Audio"
Here's what I found when researching ...
0
votes
1answer
770 views
Setting Cookies with Poltergeist PhantomJS Capybara Driver
I'm running to issues attempting to set cookies using the Poltergeist gem, and from reading through the closed issues at the Poltergeist gem, it appears this is a user error issue on my part, but I've ...
1
vote
2answers
143 views
Posting to Google+ in Ruby?
Is there a library or gem that currently wraps the process of posting to Google+ programmatically? It seems that it would be fairly straight forward to use Capybara, Watir, or something similar to ...
1
vote
0answers
193 views
Race condition in Rails 2.3 and phantomJS
I have a rails 2.3 application running on REE. I am using capybara 1.1.2, cucumber 1.1.0, poltergeist (used both 0.6.0 and lastest from github) and phantomJS 1.5.0. My problem is that I believe I ...
