Configure Capybara with Chrome, Chrome Headless or Firefox with Screenshot feature and Session without losing your mind with just one line.
Add the following code on your Gemfile and run bundle install:
group :test do
gem 'capybara-box', require: false
end
Just require the lib after Capybara require and you done:
require 'capybara/rails'
require 'capybara-box'
CapybaraBox::Base.configure
By default, chrome
is the driver, but you can use chrome_headless
and firefox
too.
If you do not want install the Chrome Driver on your CI, you can specify the version here and it will be installed automatically for you.
CapybaraBox::Base.configure version: '2.32'
- This works just for
chrome
andchrome_headless
, for now
You can enable screenshot on failure and send it to S3.
CapybaraBox.configure(
screenshot: {
s3: {
access_key_id: 'KEY',
bucket: 'bucket',
secret_access_key: 'SECRET'
}
}
)
If you want enable it only on CI, use the enabled
option:
CapybaraBox.configure(
enabled: ENV['CI'],
screenshot: { // ... }
)
By default, Rack Session manipulation comes as battery, just use it.
page.set_rack_session key: 'value'
page.get_rack_session :key
# 'value'
You can disable this feature using the session
option:
CapybaraBox.configure session: false
By default some Switches are enabled for a better performance, you can add yours too:
capybara_box = CapybaraBox.configure
capybara_box.add_argument '--incognito'
If you prefere, is possible override all of them:
CapybaraBox.configure arguments: ['--incognito']
Click here to see the avaiables.
By default some Preferences are enabled for a better performance, you can add yours too:
capybara_box = CapybaraBox.configure
capybara_box.add_preference :credentials_enable_service, false
If you prefere, is possible override all of them:
CapybaraBox.configure preferences: { credentials_enable_service: false }
You can check Chrome and Firefox.
By default some timeout configs are enabled only on CI env for a better performance. It has this restrition because with timeout enabled, debugger cannot evaluate the variables values. You can override all of them too:
CapybaraBox.configure http_client_options: { read_timeout: 60 }
You can override all driver options:
CapybaraBox.configure driver_options: { clear_local_storage: true }
Log is writen at log/capybara-box.log
as default.
You can see each command executed. Time spent between them and debug some hanging command. 🎉
[15.479][INFO]: RESPONSE Navigate
[15.482][INFO]: COMMAND ExecuteScript {
"args": [ ],
"script": "return $(\".gridy\").data(\"ready\")"
}
[15.483][INFO]: Waiting for pending navigations...
[15.545][INFO]: Done waiting for pending navigations. Status: ok
To disable log on CI, for example, use the log
options:
CapybaraBox.configure log: ENV['CI'].nil?
- It works only for chrome and chrome_headless.