0
votes
2answers
31 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 ...
2
votes
1answer
26 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
1answer
341 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
121 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 ...
1
vote
1answer
139 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
693 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 ...
2
votes
1answer
189 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 ...
1
vote
2answers
658 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?
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 ...