Project

ferrum-har

0.0
The project is in a healthy, maintained state
Rubygem to convert ferrum traffic to HAR files
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 0
>= 0
 Project Readme

ferrum-har

Gem Version specs workflow License

ferrum-har is a gem that adds the ability to capture HAR files while running tests using ferrum.

Installation

Add ferrum-har to your Gemfile and bundle install:

gem "ferrum-har"

Usage

Use ferrum as normal and call the har method on the page (or browser) object. Chrome must be used as the browser engine.

Note, the devtools window in Chrome will be opened by ferrum-har for the duration of the ferrum test run. This is mandatory to obtain the HAR from Chrome.

browser = Ferrum::Browser.new
page = browser.create_page
page.go_to("https://www.bbc.co.uk")
page.network.wait_for_idle

# Returns the HAR as a JSON string
puts page.har

How it works

Creating a HAR file from ferrum network objects is complex and potentially incompatible with the HAR generated by other tools (including Chrome).

Instead, ferrum-har contains a small Chrome extension that is automatically loaded into the test browser. When the har method is called, this extension asks the Chrome devtools Network panel for the HAR file and returns it to the Ruby process. This means the HAR is always a valid version of exactly what Chrome would produce.

The JS method that is ultimately called is chrome.devtools.network.getHAR() and you can read more about it here.

One ramification of this is that the Chrome devtools must be open for the extension to work.

To get the extension to be loaded we must pass some switches to the Chrome process via ferrum, specifically the --auto-open-devtools-for-tabs and --load-extension switches. This is done by ferrum-har automatically.

For further reading, a full list of Chrome switches can be found here.

Upgrading

ferrum-har uses semantic versioning, so major version changes will usually require additional actions to be taken upgrading from one major version to another.

Changelog

A full changelog can be found here: CHANGELOG.md

Further work

Some ideas for improvements.

  1. Add functionality to minimise the devtools sidepanel size. To do this we would have to pass in a "profile" to the ferrum start switches like this:
    "user-data-dir=profile" => "somedir"
    And have a "Default/Preferences" file in there that contains a sizing element like this:
    {
      "devtools": {
        "preferences": {
          "inspector-view.split-view-state": "{\"vertical\":{\"size\":1},\"horizontal\":{\"size\":0}}"
        }
      }
    }
    However, that doesn't work as it stands as it is just a partial profile. We could add an entire Chrome profile but that would be hundreds of files.
  2. Add GitHub Actions tests.