Cuprite is a pure Ruby driver (read as no Java/Selenium/WebDriver/ChromeDriver requirement) for Capybara. It allows you to run your Capybara tests on a headless Chrome or Chromium browser while the latter is prefered for now because we work with tip-of-tree protocol.
The emphasis was made on raw CDP protocol because Headless Chrome allows you to do so many cool things that are barely supported by WebDriver because it should have consistent design with other browsers. The design of the driver will be as close to Poltergeist as possible but it's not a goal.
Almost all capybara tests are passing with quite good speed in comparison with Poltergest/PhantomJS:
cuprite:
Finished in 8 minutes 44 seconds (files took 0.97501 seconds to load)
1531 examples, 0 failures, 112 pending
selenium headless chrome:
Finished in 9 minutes 13 seconds (files took 0.97749 seconds to load)
1445 examples, 0 failures, 3 pending
poltergeist:
Finished in 11 minutes 49 seconds (files took 0.54019 seconds to load)
1560 examples, 0 failures, 6 pending
gem "cuprite"
and run bundle install
.
In your test setup add:
require "capybara/cuprite"
Capybara.javascript_driver = :cuprite
If you were previously using the :rack_test
driver, be aware that
your app will now run in a separate thread and this can have
consequences for transactional tests. See the Capybara README for more detail.
As Chromium is stopped being built as a package for Linux don't even try to install it this way because it will either be outdated or unofficial package. Both are bad. Download it from official source.
All the mandatory capybara features plus optional ones:
page.evaluate_script
andpage.execute_script
page.within_frame
page.status_code
page.response_headers
page.save_screenshot
page.driver.render_base64(format, options)
- window API
- cookie handling
Sometimes its desirable to click a very specific area of the screen. You can
accomplish this with page.driver.click(x, y)
, where x and y are the screen
coordinates.
Manipulate HTTP request headers like a boss:
page.driver.headers # => {}
page.driver.headers = { "User-Agent" => "Cuprite" }
page.driver.add_headers("Referer" => "https://example.com")
page.driver.headers # => { "User-Agent" => "Cuprite", "Referer" => "https://example.com" }
Notice that headers=
will overwrite already set headers. You should use
add_headers
if you want to add a few more. These headers will apply to all
subsequent HTTP requests (including requests for assets, AJAX, etc). They will
be automatically cleared at the end of the test.
You can inspect the network traffic (i.e. what resources have been loaded) on
the current page by calling page.driver.network_traffic
. This returns an array
of request objects. A request object has a response
method containing data
about the response.
Please note that network traffic is not cleared when you visit new page. You can
manually clear the network traffic by calling page.driver.clear_network_traffic
or page.driver.reset
The following methods are used to inspect and manipulate cookies:
page.driver.cookies
- a hash of cookies accessible to the current page. The keys are cookie names. The values areCookie
objects, with the following methods:name
,value
,domain
,path
,size
,secure?
,httponly?
,session?
,expires
.page.driver.set_cookie(name, value, options = {})
- set a cookie. The options hash can take the following keys::domain
,:path
,:secure
,:httponly
,:expires
.:expires
should be aTime
object.page.driver.remove_cookie(name)
- remove a cookiepage.driver.clear_cookies
- clear all cookies
You can customize the way that Capybara sets up Cuprite via the following code in your test setup:
Capybara.register_driver :cuprite do |app|
Capybara::Cuprite::Driver.new(app, options)
end
options
is a hash of options. The following options are supported:
:browser
(Hash) - Hash of options to be passed to chrome process::path
(String) - Path to chrome binary, you can also set ENV variable asBROWSER_PATH=some/path/chrome bundle exec rspec
:window_size
(Array) - The dimensions of the browser window in which to test, expressed as a 2-element array, e.g. [1024, 768]. Default: [1024, 768]:port
(Integer) - Remote debugging port for headless Chrome:host
(String) - Remote debugging address for headless Chrome
Cuprite supports URL blacklisting, which allows you to prevent scripts from running on designated domains:
page.driver.browser.url_blacklist = ['http://www.example.com']
and also URL whitelisting, which allows scripts to only run on designated domains:
page.driver.browser.url_whitelist = ['http://www.example.com']
If you are experiencing slower run times, consider creating a URL whitelist of domains that are essential or a blacklist of domains that are not essential, such as ad networks or analytics, to your testing environment.
Copyright 2018-2019 Machinio
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.