Tagged Questions
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
0answers
27 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 {
...
2
votes
1answer
24 views
Dynamically add created images to asset pipeline
i have a rails app that creates images in a controller with phantomjs using
system("/usr/bin/phantomjs ./app/assets/javascripts/phantom_snapshot.js http://urlToPageWhereImgComesFrom/ ...
0
votes
0answers
71 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
2answers
289 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 ...
1
vote
1answer
252 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 ...
0
votes
1answer
88 views
use visit(…) with full url
I have an ERP app that uses multiple urls, in the routes files, which would be something like :
constraints(host: /^admin\.domain$/) do
# all private back office stuff in there
end
...
1
vote
2answers
102 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 ...
1
vote
1answer
411 views
watir-webdriver phantomjs and ghostdriver
I currently have a rails app that uses rspec and watir-webdriver for my integration tests. I want to run my integration tests in a headless browser (for speed purposes). Since my development is done ...
0
votes
0answers
211 views
PhantomJS to automate posting to a website through Rails
Ok, so I've been trying to get this to work for some time now. My aim is to have this integrated into my rails application, so I was told to try phantomJS. I'm trying to automate logging in and ...
0
votes
0answers
198 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 ...
3
votes
3answers
260 views
PhantomJS version 1.4.0 version issue
I installed PhantomJS today and got this error trying to use it:
PhantomJS version 1.4.0
is too old. You must use at least version 1.7.0
(Capybara::Poltergeist::PhantomJSTooOld)
How can I install ...
1
vote
1answer
394 views
Can't open guard-jasmine.coffee, No response from the Jasmine runner
When I try to run guard-jasmine in my guard set up or in the independent guard-jasmine command I get this error
Guard::Jasmine starts thin test server on port 8888 in test environment.
Waiting for ...
2
votes
1answer
187 views
How to set path for a system call from inside a Rails app?
I am trying to execute phantom.js module from rails. So far I've successfully installed the binary and the path for phantomjs seems to be working fine.
However when I try to run it from a rails app ...
4
votes
1answer
524 views
Server side rendering for dynamic pages with PhantomJS on Ruby On Rails
I have a WebPage made that is 90% Javascript. All of the WebSite is rendered dynamically.
I want this content to be rendered by the server as well so that Google can crawl and index all of my ...
1
vote
0answers
190 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 ...
1
vote
2answers
656 views
Running command-line processes in parallel in Ruby
I'm using PhantomJS, a command-line tool, to render images of websites, and I want to run a number of these in parallel instead of doing one after the other. How can I do this?
3
votes
1answer
3k views
Phantomjs not working
I followed these instructions (except for copying the executable to my PATH because I cannot seem to find it and it does not seem necessary). Then I made a file called image_render.js in my public ...
10
votes
3answers
3k views
Running Phantomjs on Heroku [closed]
Is there a way to run phantomjs, a command-line tool, on Heroku?
3
votes
1answer
3k views
Running phantomjs from a Ruby on Rails application
I'm interested in using Phantomjs and I'd like to run it from my Ruby on Rails application. However, this is a command line tool (i.e. I'd need to run something like phantomjs rasterize.js ...