Skip to content

An extension around Selenium and Capybara that provides prebuilt common profiles and extensions!

License

Notifications You must be signed in to change notification settings

alexanderbez/capybartender

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Capybartender

Gem Version

Don't stress, let Capybartender serve you your desired Selenium profile!

Installation

Add this line to your application's Gemfile:

gem 'capybartender'

And then execute:

$ bundle

Or install it yourself as:

$ gem install capybartender

Usage

Work in progress, but as of right now, you can get two profiles, Chrome and Firefox with a few handful of options.

1.) Firefox

Capybartender::Serve.firefox_driver!('custom_driver_name', {})

session = Capybara::Session.new(:custom_driver_name)
session.visit "http://www.google.com"

Options, at the moment, include:

  • :use_cache => [true|false]
  • :test_mode => [true|false]
  • :timeout => Integer

2.) Chrome

Capybartender::Serve.chrome_driver!('custom_driver_name', {})

session = Capybara::Session.new(:custom_driver_name)
session.visit "http://www.google.com"

Options, at the moment, include:

  • :timeout => Integer

Notes

Must have latest Chrome driver installed in order to use the Chrome profile
( http://chromedriver.storage.googleapis.com/index.html )

Contributing

  1. Fork it ( https://github.com/alexanderbez/capybartender/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

About

An extension around Selenium and Capybara that provides prebuilt common profiles and extensions!

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages