No commit activity in last 3 years
No release in over 3 years
Dead-simple way to make Capybara and Selenium play together
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

Gem Version Code Climate Dependency Status

CapybaraSelenium

Dead-simple way to make Capybara and Selenium play together

Roadmap

CapybaraSelenium is on its way towards 1.0.0. Please refer to issues for details.

Installation

Add this line to your application's Gemfile:

gem 'capybara-selenium'

And then execute:

$ bundle

Or install it yourself as:

$ gem install capybara-selenium

Usage

Supported application servers:

  • Modular sinatra apps (through config.ru)

Supported selenium servers:

  • Remote selenium server
# features/support/continous_integration.rb
APP_SERVER_HOST = ENV['CI_APP_SERVER_HOST'] || 'localhost'
APP_SERVER_PORT = ENV['CI_APP_SERVER_PORT'] || 8080
SELENIUM_SERVER_URL = ENV['CI_SELENIUM_SERVER_URL'] || 
                      'http://127.0.0.1:4444/wd/hub'

CapybaraSelenium.configure(:rack, :remote) do |config|
  config.app_server.host = APP_SERVER_HOST
  config.app_server.port = APP_SERVER_PORT
  config.app_server.config_ru_path = File.expand_path(
      File.join(__FILE__, '../web_app/config.ru'))

  config.selenium_server.url = SELENIUM_SERVER_URL
  config.selenium_server.capabilities = { browser_name: browser_name }
end

Contributing

  1. Fork it ( https://github.com/dsaenztagarro/capybara_selenium/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request