Provides integration between selenium-webdriver and PhantomJS via Ghostdriver
Add this line to your application's Gemfile:
gem 'selenium-phantomjs'
And then execute:
$ bundle
Or install it yourself as:
$ gem install selenium-phantomjs
To use PhantomJS as a browser for Selenium test just add to your spec_helper.rb
or Spork.prefork
block
Capybara.default_driver = :selenium_phantomjs
Please note that Ghostdriver needs Selenium Hub run on localhost:4444
.
If you want to pass command line args to the phantmojs binary by startup you can:
Selenium::Phantomjs.start(:proxy => 'localhost:45678')
This will start a Phantomjs instance with --proxy="localhost:45678"
argument
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request