BacktopJS

Automates visual regression testing of your responsive web UI by comparing ...

README

Build Status

BackstopJS

I'm in your webapps -- checkin your screens

BackstopJS automates visual regression testing of your responsive web UI by comparing DOM screenshots over time.

News

Backstop 6.0.1 -- now with Playwright engine!   Many thanks to our friend @FrostyShosty who came out of nowhere and made it happen!

EmberJS users -- check out our ember-backstop test helper! https://github.com/garris/ember-backstop

Want to learn how to Backstop from a pro? Check out visual regression testing with BackstopJS on udemy.com by Walmyr Filho

Backstop Features


- In-browser reporting UI with...
  layout settings for print and screen
  scenario display filtering
  reference, test, visual diff inspector
  cool scrubber thingy
  approving a test

BackstopJS browser report

- Integrated Docker rendering -- to eliminate cross-platform rendering shenanigans
- CLI reports
- Render tests with Chrome Headless
- Simulate user interactions with Playwright or Puppeteer scripts
- JUnit reports
- Plays nice with CI and source control
- Run globally or locally as a standalone package app or require('backstopjs') right into your node app
- Incredibly easy to use: just 3 commands go a long long way!

BackstopJS cli report

Install BackstopJS now

  1. ```sh
  2. $ npm install -g backstopjs
  3. ```


Contents











The BackstopJS workflow


  - backstop init: Set up a new BackstopJS instance -- specify URLs, cookies, screen sizes, DOM selectors, interactions etc. (see examples directory)

  - backstop test: BackstopJS creates a set of test screenshots and compares them with your reference screenshots. Any changes show up in a visual report. (Run this after making CSS changes as many times as needed.)

  -  backstop approve: If the test you ran looks good, then go ahead and approve it. Approving changes will update your reference files with the results from your last test.  Future tests are compared against your most recent approved test screenshots.

Getting started

Installation


Global installation (recommended)

  1. ```sh
  2. $ npm install -g backstopjs
  3. ```

Local installation


BackstopJS will run as a totally stand alone app -- but installing locally allows you to do this...
  1. ``` js
  2. const backstop = require('backstopjs');
  3. ```

See Integration Options to learn about cool BackstopJS integration options!

Initializing your project


If you don't already have BackstopJS set up...
BackstopJS can create a default configuration file and project scaffolding in your current working directory. Please note: this will overwrite any existing files!

cd to your project's directory and run...

  1. ```sh
  2. $ backstop init
  3. ```

Working with your config file


By default, BackstopJS places backstop.json in the root of your project. And also by default, BackstopJS looks for this file when invoked.

Pass a `--config=` argument to test using a different config file.

JS based config file

You may use a javascript based config file to allow comments in your config. Be sure to _export your config object as a node module_.

Example: Create a backstop.config.js

  1. ```
  2. module.exports = { Same object as backstop.json }
  3. ```

and then backstop test --config="backstop.config.js"

Required config properties


As a new user setting up tests for your project, you will be primarily concerned with these properties...

id – Used for screenshot naming. Set this property when sharing reference files with teammates -- otherwise omit and BackstopJS will auto-generate one for you to avoid naming collisions with BackstopJS resources.

viewports – An array of screen size objects your DOM will be tested against.  Add as many as you like -- but add at least one.

scenarios – This is where you set up your actual tests. The important sub properties are...

- scenarios[n].label – Required. Also used for screenshot naming.
- scenarios[n].url – Required. Tells BackstopJS what endpoint/document you want to test.  This can be an absolute URL or local to your current working directory.

_TIP: no other SCENARIO properties are required. Other properties can just be added as necessary_

Generating test bitmaps


  1. ```sh
  2. $ backstop test
  3. ```

This will create a new set of bitmaps in `bitmaps_test//`

Once the test bitmaps are generated, a report comparing the most recent test bitmaps against the current reference bitmaps will display.

Pass a `--filter=` argument to just run scenarios matching your scenario label.

Tip The --filter argument offers a useful shortcut for re-running a single test or failed tests.

Pass a --docker flag to render your test in a Docker container -- this will help with consistency if you are attempting to compare references across multiple environments.

Approving changes


  1. ```sh
  2. $ backstop approve
  3. ```

When running this command, all images (with changes) from your most recent test batch will be promoted to your reference collection. Subsequent tests will be compared against your updated reference files.

Pass a `--filter=` argument to promote only the test captures matching your scenario filename. The filenames (which by default include scenario and viewport names) are displayed in the visual and cli reports.

**Tip**: Remember to pass a `--config=` argument if you passed that when you ran your last test.

Using BackstopJS


Advanced Scenarios

Scenario properties are described throughout this document and processed sequentially in the following order...

  1. ``` js
  2. label                    // [required] Tag saved with your reference images
  3. onBeforeScript           // Used to set up browser state e.g. cookies.
  4. cookiePath               // import cookies in JSON format (available with default onBeforeScript see setting cookies below)
  5. url                      // [required] The url of your app state
  6. referenceUrl             // Specify a different state or environment when creating reference.
  7. readyEvent               // Wait until this string has been logged to the console.
  8. readySelector            // Wait until this selector exists before continuing.
  9. readyTimeout             // Timeout for readyEvent and readySelector (default: 30000ms)
  10. delay                    // Wait for x milliseconds
  11. hideSelectors            // Array of selectors set to visibility: hidden
  12. removeSelectors          // Array of selectors set to display: none
  13. onReadyScript            // After the above conditions are met -- use this script to modify UI state prior to screen shots e.g. hovers, clicks etc.
  14. keyPressSelectors        // Takes array of selector and string values -- simulates multiple sequential keypress interactions.
  15. hoverSelector            // Move the pointer over the specified DOM element prior to screen shot.
  16. hoverSelectors           // *Playwright and Puppeteer only* takes array of selectors -- simulates multiple sequential hover interactions.
  17. clickSelector            // Click the specified DOM element prior to screen shot.
  18. clickSelectors           // *Playwright and Puppeteer only* takes array of selectors -- simulates multiple sequential click interactions.
  19. postInteractionWait      // Wait for a selector after interacting with hoverSelector or clickSelector (optionally accepts wait time in ms. Ideal for use with a click or hover element transition. available with default onReadyScript)
  20. scrollToSelector         // Scrolls the specified DOM element into view prior to screen shot (available with default onReadyScript)
  21. selectors                // Array of selectors to capture. Defaults to document if omitted. Use "viewport" to capture the viewport size. See Targeting elements in the next section for more info...
  22. selectorExpansion        // See Targeting elements in the next section for more info...
  23. misMatchThreshold        // Percentage of different pixels allowed to pass test
  24. requireSameDimensions    // If set to true -- any change in selector size will trigger a test failure.
  25. viewports                // An array of screen size objects your DOM will be tested against. This configuration will override the viewports property assigned at the config root.
  26. gotoParameters           // An array of settings passed to page.goto(url, parameters) function.
  27. ```

Testing click and hover interactions

BackstopJS ships with an onReady script that enables the following interaction selectors...
  1. ``` js
  2. clickSelector: ".my-hamburger-menu",
  3. hoverSelector: ".my-hamburger-menu .some-menu-item",
  4. ```
The above would tell BackstopJS to wait for your app to generate an element with a .my-hamburger-menu class, then click that selector.   Then it would wait again for a .my-hamburger-menu .some-menu-item class, then move the cursor over that element (causing a hover state).  Then BackstopJS would take a screenshot.

You can use these properties independent of each other to easily test various click and or hover states in your app.  These are obviously simple scenarios -- if you have more complex needs then this example should serve as a pretty good starting point create your own onReady scripts.

NOTE: Playwright and Puppeteer versions optionally take clickSelectors & hoverSelectors as arrays of selectors...
  1. ``` js
  2. clickSelectors: [".my-hamburger-menu",".my-hamburger-item"],
  3. hoverSelectors: [".my-nav-menu-item",".my-nav-menu-dropdown-item"],
  4. ```

Key Press interactions

BackstopJS ships with an onReady script that allows user to key press on selectors...
NOTE: Supports both Playwright and Puppeteer and takes arrays of selectors and key press values.

  1. ``` json
  2. scenarios [
  3.   {
  4.     "keyPressSelectors": [
  5.       {
  6.         "selector": "#email",
  7.         "keyPress": "marcdacz@backstopjs.com"
  8.       },
  9.       {
  10.         "selector": "#password",
  11.         "keyPress": "1234"
  12.       }
  13.     ]
  14.   }
  15. ]
  16. ```

Setting cookies

BackstopJS ships with an onBefore script that makes it easy to import cookie files…
  1. ``` json
  2. cookiePath "backstop_data/engine_scripts/cookies.json",
  3. ```
_note: path is relative to your current working directory_

Pro tip:  If you want an easy way to manually export cookies from your browser then download this chrome extension. You can directly use the output cookie files with BackstopJS  https://chrome.google.com/webstore/detail/%E3%82%AF%E3%83%83%E3%82%AD%E3%83%BCjson%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E5%87%BA%E5%8A%9B-for-puppet/nmckokihipjgplolmcmjakknndddifde

Targeting elements


BackstopJS makes it super easy to capture screenshots of your entire layout or just parts of your layout. This is defined in your scenario.selectors array. Elements are defined with standard CSS notation. By default BackstopJS takes a screenshot of the first occurrence of any selector found in your DOM. e.g. If you have three li tags in your layout only the first will used.

selectorExpansion

If you want BackstopJS to find and take screenshots of _all_ matching selector instances then there is a handy switch for that. Set selectorExpansion to true like so...
  1. ``` json
  2. scenarios [
  3.   {
  4.     "selectors": [
  5.       ".aListOfStuff li"
  6.     ],
  7.     "selectorExpansion": true
  8.   }
  9. ]
  10. // captures all
  11. tags inside .aListOfStuff
  12. ```
(Default behavior) If you want very explicit control of what you capture then you can disable selectorExpansion and explicitly select what you want...

  1. ``` json
  2. scenarios [
  3.   {
  4.     "selectors": [
  5.       ".aListOfStuff li"
  6.     ],
  7.     "selectorExpansion": false
  8.   }
  9. ]
  10. // Just captures the first
  11. tag inside .aListOfStuff
  12. ```

expect

When working with selector expansion(set selectors in selectors properties and set selectorExpansion to true), you might want to explicitly set the number of results that you expect to find by the selectors. Set expect in the scenario to a number which is greater than 0, then the test will fail for the scenario if the number of selected result does not match the expect number.

  1. ``` json
  2. scenarios [
  3.   {
  4.     "selectors": [
  5.       ".aListOfStuff li"
  6.     ],
  7.     "selectorExpansion": true,
  8.     "expect": 5
  9.   }
  10. ]
  11. // captures all
  12. tags inside .aListOfStuff, and make sure the number of
  13. tags is 5
  14. ```

(Default behavior) If you don't care the number of the selected elements, just set expect to 0 or not set the property.

  1. ``` json
  2. scenarios [
  3.   {
  4.     "selectors": [
  5.       ".aListOfStuff li"
  6.     ],
  7.     "selectorExpansion": false,
  8.     "expect": 0
  9.   }
  10. ]
  11. // Captures all
  12. tags inside .aListOfStuff, and not check the number of
  13. tags
  14. ```

Testing Progressive apps, SPAs and AJAX content


It is very common for client-side web apps is to initially download a small chunk of bootstrapping code/content/state and render it to the screen as soon as it arrives at the browser. Once this has completed, various JS components often take over to progressively load more content/state.

The problem testing these scenarios is knowing _when_ to take the screenshot.  BackstopJS solves this problem with two config properties: readySelector, readyEvent and delay.

Trigger screen capture via selector


The readySelector property tells BackstopJS to wait until a selector exists before taking a screenshot. For example, the following line will delay screen capture until a selector with the id '#catOfTheDayResult' is present somewhere in the DOM.

  1. ``` json
  2. "readySelector": "#catOfTheDayResult"
  3. ```

Another approach might look like this...

  1. ``` json
  2. "readySelector": "body.ember-has-rendered"
  3. ```

Trigger screen capture via console.log()


The readyEvent property enables you to trigger the screen capture by logging a predefined string to the console. For example, the following line will delay screen capture until your web app calls console.log("backstopjs_ready")...

  1. ``` json
  2. "readyEvent": "backstopjs_ready"
  3. ```

In the above case it would be up to you to wait for all dependencies to complete before calling logging "backstopjs_ready" string to the console.

Delay screen capture


The delay property enables you to pause screen capturing for a specified duration of time. This delay is applied after readyEvent (if also applied).

  1. ``` js
  2. "delay": 1000 //delay in ms
  3. ```

In the above case, BackstopJS would wait for one second before taking a screenshot.

In the following case, BackstopJS would wait for one second after the string backstopjs_ready is logged to the console.

  1. ``` js
  2. {
  3.   // ...
  4.   "readyEvent": "backstopjs_ready",
  5.   "delay": 1000 //delay in ms
  6.   // ...
  7. }
  8. ```

Dealing with dynamic content


For obvious reasons, this screenshot approach is not optimal for testing live dynamic content. The best way to test a dynamic app would be to use a known static content data stub – or ideally many content stubs of varying lengths which, regardless of input length, should produce certain specific bitmap output.

Hiding selectors


That said, for a use case where you are testing a DOM with say an ad banner or a block of dynamic content which retains static dimensions, we have the hideSelectors property in capture/config.json which will set the corresponding DOM to visibility:hidden, thus hiding the content from our Resemble.js analysis but retaining the original layout flow.

  1. ``` json
  2. "hideSelectors": [
  3.   "#someFixedSizeDomSelector"
  4. ]
  5. ```

Removing selectors

There may also be elements which need to be completely removed during testing. For that we have removeSelectors which removes them from the DOM before screenshots.

  1. ``` json
  2. "removeSelectors": [
  3.   "#someUnpredictableSizedDomSelector"
  4. ]
  5. ```

Capturing Browser Console Logs


Sometimes you need a little more information to debug misbehavior. If that information is in the browser console logs, it won't appear in a screenshot. To capture the browser console logs along with the screenshots, set scenarioLogsInReports. ( _Note: In order to view the logs, you will have to serve the reports from an HTTP server. See Interactive Web Reporting below._)

  1. ``` json
  2. "scenarioLogsInReports": true
  3. ```

Changing test sensitivity

"misMatchThreshold" (percentage 0.00%-100.00%) will change the amount of difference BackstopJS will tolerate before marking a test screenshot as "failed".  The default setting is 0.1, this may need to be adjusted based on the kinds of testing you're doing.

More info on how misMatchThreshold is derived can be found here... https://github.com/Huddle/Resemble.js/blob/af57cb2f4edfbe718d24b350b2be1d956b764298/resemble.js#L495

"requireSameDimensions" (true || false) will change whether BackstopJS will accept any change in dimensions. The default setting is true. If set to true then the test must be the same dimensions as the reference. If set to false the test does not have to be the same dimensions as the reference.

This setting can be used in conjunction with "misMatchThreshold", for example, when setting a "misMatchThreshold" of more than 0.00% and the mismatch causing a change in dimensions, setting "requireSameDimensions" to false will allow the test to still pass, setting it to true would still make it fail.

Capturing the entire document or just the viewport, or just an element, or a combination.

BackstopJS recognizes two magic selectors: document and viewport -- these capture the entire document and just the current specified viewport respectively.  e.g.

  1. ``` js
  2. "scenarios": [
  3.   {
  4.     "selectors": [
  5.       "document",
  6.       "viewport",
  7.       "#myFeature",
  8.       // ...
  9.     ],
  10.      // ...
  11.   }
  12. ]
  13. ```

Comparing different endpoints (e.g. comparing staging and production)

Pointing to different endpoints is easy. (e.g. to compare a production environment against a staging environment).

You can create reference files (without previewing) by using the command backstop reference.  By default this command calls the url property specified in your config.  Optionally, you can add a referenceUrl property to your scenario configuration. If found, BackstopJS will use referenceUrl for screen grabs when running $ backstop reference.

  1. ``` js
  2. "scenarios": [
  3.   {
  4.     "label": "cat meme feed sanity check",
  5.     "url": "http://www.moreCatMemes.com",
  6.     "referenceUrl": "http://staging.moreCatMemes.com:81",
  7.     // ...
  8.   }
  9. ]
  10. ```

Running custom scripts


Simulate user actions (click, scroll, hover, wait, etc.) or states (cookie values) by running your own script on ready. For each scenario, the custom .js file you specify is imported and run when the BackstopJS ready events are fulfilled.

From your project root, place your scripts in...

  1. ```sh
  2. ./backstop_data/engine_scripts
  3. ```

at the root of your config or in your scenario...

  1. ``` js
  2. "onReadyScript": "filename.js"   // Runs after onReady event on all scenarios -- use for simulating interactions (.js suffix is optional)
  3. "onBeforeScript": "filename.js"  // Runs before each scenario -- use for setting cookies or other env state (.js suffix is optional)
  4. "scenarios": [
  5.   {
  6.     "label": "cat meme feed sanity check",
  7.     "onReadyScript": "filename.js"   //  If found will run instead of onReadyScript set at the root (.js suffix is optional)
  8.     "onBeforeScript": "filename.js" // If found will run instead of onBeforeScript at the root (.js suffix is optional)
  9.      // ...
  10.   }
  11. ]
  12. ```

Inside filename.js, structure it like this:

  1. ``` js
  2. // onBefore example (puppeteer engine)
  3. module.exports = async (page, scenario, vp, isReference) => {
  4.   await require('./loadCookies')(page, scenario);

  5.   // Example: set user agent
  6.   await page.setUserAgent('some user agent string here');

  7. };

  8. // onReady example (puppeteer engine)
  9. module.exports = async (page, scenario, vp) => {
  10.   console.log('SCENARIO > ' + scenario.label);
  11.   await require('./clickAndHoverHelper')(page, scenario);

  12.   // Example: changing behavior based on config values
  13.   if (vp.label === 'phone') {
  14.     console.log( 'doing stuff for just phone viewport here' );
  15.   }

  16.   // add more stuff here...
  17. };
  18. ```

Setting the base path for custom onBefore and onReady scripts


By default, the base path is a folder called engine_scripts inside your BackstopJS installation directory. You can override this by setting the paths.scripts property in your backstop.json file to point to somewhere in your project directory (recommended).

  1. ``` json
  2. "paths": {
  3.   "engine_scripts": "backstop_data/engine_scripts"
  4. }
  5. ```

onBeforeScript/onReadyScript available variables


onBefore(page, scenario, viewport, isReference, Engine, config)

  1. ```
  2. page:      browser page object
  3. scenario:    currently running scenario config
  4. viewport:    viewport info
  5. isReference: whether scenario contains reference URL property
  6. Engine:      Static class reference (Puppeteer/Playwright)
  7. config:      the whole config object
  8. ```

Reporting workflow tips


One testing approach to consider is incorporating BackstopJS into your build process and just let the CLI report run on each build or before each deploy.

It's natural for your layout to break while you're in feature development -- in that case you might just run a backstop test when you feel things should be shaping up.

Use the report property in your config to enable or disable the respective properties. E.g. the following settings will open a browser and write a junit report.

  1. ``` json
  2. "report": ["browser", "CI"]
  3. ```

You can also specify a json report:
  1. ``` json
  2. "report": ["json"]
  3. ```

If you choose the CI-only reporting or even no reporting (CLI is always on) you can always enter the following command to see the latest test run report in the browser.

  1. ```sh
  2. $ backstop openReport
  3. ```

Test report integration with a build system like Jenkins/Travis


The following config would enable the CI - report (default: junit format)

  1. ``` json
  2. "report" : [ "CI" ],
  3. ```

The regression test report will be generated in the JUnit format and the report will be placed in the given directory (default: [backstopjs dir]/test/ci_report/xunit.xml).

You may customize the testsuite name and/or a report file (xunit.xml) path to your build report directory by using the below configuration overrides,

  1. ``` js
  2. "paths": {
  3.   "ci_report" :  "backstop_data/ci_report"
  4. },
  5. "ci": {
  6.   "format" :  "junit" ,
  7.   "testReportFileName": "myproject-xunit", // in case if you want to override the default filename (xunit.xml)
  8.   "testSuiteName" :  "backstopJS"
  9. },
  10. ```

Interactive Web Reporting


Approve Scenarios Web Report

Backstop web reports support approving scenarios and viewing browser logs generated by each scenario. To enable these features you will need to run the backstop remote HTTP service in another terminal window...

  1. ``` sh
  2. BACKSTOP_REMOTE_HTTP_PORT=3000 backstop remote --config=<your config>
  3. ```

Tip: The command above needs to be running before you open the report, so that Backstop detects it automatically. By default Backstop will open a report after running backstop test. Additionally reports can always be opened by running backstop openReport. Also have a look at Reporting workflow tips.

Pro Tip: To stop the remote server, you can either hit `Ctrl-C` or `GET` the `http:///stop/` endpoint.

BackstopJS and CLI return values

Pro Tip: When run on the command line, the BackstopJS process will return a 0 if tests were successful and a 1 if anything failed. So you always have the flexibility of branching way up high in your CLI if needed -- e.g....

  1. ```
  2. node ./backstopjs/cli/ test  && echo 'passed' || echo 'failed'
  3. ```

CLI error handling


When a layout error is found in CLI mode, BackstopJS will let you know in a general report displayed in the console. In addition, BackstopJS will return a 1 (error) to the calling CLI process.

Setting the bitmap and script directory paths

By default, BackstopJS saves generated resources into the backstop_data directory in parallel with your backstop.json config file. The location of the various resource types are configurable so they can easily be moved inside or outside your source control or file sharing environment. See below for options...

Tip: these file paths are relative to your current working directory._

  1. ``` json
  2.   ...
  3.   "paths": {
  4.     "bitmaps_reference": "backstop_data/bitmaps_reference",
  5.     "bitmaps_test": "backstop_data/bitmaps_test",
  6.     "engine_scripts": "backstop_data/engine_scripts",
  7.     "html_report": "backstop_data/html_report",
  8.     "json_report": "backstop_data/json_report",
  9.     "ci_report": "backstop_data/ci_report",
  10.   }
  11.   ...
  12. ```

Changing the rendering engine

Both Puppeteer and Playwright are installed by default, though the default configuration is set to Puppeteer.

Chrome-Headless (The latest webkit library)

To use chrome headless you can currently use _puppeteer_ (https://github.com/GoogleChrome/puppeteer).

  1. ``` json
  2. "engine": "puppeteer"
  3. ```

Playwright

To use firefox or webkit, you can currently use _playwright_ (https://github.com/microsoft/playwright).

Be sure to also switch the onBefore and onReady scripts to the Playwright defaults.  Playwright supports setting engineOptions.browser to chromium, firefox, or webkit.

The storageState config property is supported via theengineOptions object in backstop config. This sets cookies _and_ localStorage variables in the Playwright engine before tests are run. Very useful taking screenshots of pages that require authentication.

  1. ``` json
  2.   ...
  3.   "onBeforeScript": "playwright/onBefore.js",
  4.   "onReadyScript": "playwright/onReady.js",
  5.   ...
  6.   "engine": "playwright"
  7.   ...
  8.   "engineOptions": {
  9.     "browser": "chromium",
  10.     "storageState": "/path/to/cookies-and-local-storage-file.json"
  11.   }
  12.   ...
  13. ```

Setting Puppeteer and Playwright option flags

Backstop sets two defaults for both Puppeteer and Playwright:

  1. ``` json
  2. ignoreHTTPSErrors true,
  3. headless
  4. ```

You can add more settings (or override the defaults) with the engineOptions property. (properties are merged)

  1. ``` json
  2. "engineOptions": {
  3.   "ignoreHTTPSErrors": false,
  4.   "args": ["--no-sandbox", "--disable-setuid-sandbox"],
  5.   "gotoParameters": { "waitUntil": "networkidle0" },
  6. }
  7. ```
More info here:

Using Docker for testing across different environments

We've found that different environments can render the same webpage in slightly different ways -- in particular with text. E.G. see the text in this example rendering slightly differently between Linux and Mac...

BakcstopJS OS rendering differences

You can make this issue go away by rendering in a BackstopJS Docker container.  Lucky for you we've made it incredibly easy to do.

First, go ahead and install docker on your machine from the Docker Downloads Page.

Make sure Docker is running on your machine.  On MacOS there is a menu item that looks like this... MacOS Docker Menu Item

Then, simply add a --docker flag onto your commands. E.G...

  1. ```sh
  2. backstop test --docker
  3. ```

or for a local install

  1. ``` js
  2. const backstop = require('backstopjs');
  3. backstop('test', {docker: true});
  4. ```

The above flag will cause BackstopJS to hit your Docker local client, spin up a BackstopJS container from https://hub.docker.com/r/backstopjs/backstopjs/ and execute your test. By default, Backstop will attemt to use a Docker image with the same version number specified in your package.js.

Changing the default Docker command


If the default docker command or image does not work for you, you can customize the command to run BackstopJS with Docker by changing the dockerCommandTemplate config option. The default is:

  1. ```sh
  2. "dockerCommandTemplate": "docker run --rm -it --mount type=bind,source=\"{cwd}\",target=/src backstopjs/backstopjs:{version} {backstopCommand} {args}"
  3. ```

Tip: to run BackstopJS in Docker in an environment where the output is piped (e.g. CI server or an IDE's output window), remove the -t parameter (change the default to "docker run --rm -i --mount...)

Requirements for when you're using docker...

1) If you are using a config generated prior to version 3.5 and you get an error like this...

  1. ```
  2.   COMMAND | Command "test" ended with an error after [0.312s]
  3.   COMMAND | Error: Failed to launch chrome!
  4.             ... Running as root without --no-sandbox is not supported. See https://crbug.com/638180.
  5.             TROUBLESHOOTING: https://github.com/GoogleChrome/puppeteer/blob/master/docs/troubleshooting.md
  6. ```

then you need to add this to the root of your config...

  1. ``` js
  2. "engineOptions": {
  3.     "args": ["--no-sandbox"]
  4. },
  5. ```

2) localhost won't work in your scenarios -- instead, mac and win users can use host.docker.internal e.g.

  1. ``` json
  2. "url": "https://host.docker.internal/?someCoolAppParameter=true"
  3. ```

Integration options (local install)


Installing BackstopJS locally to your project makes a few integration options available.

Using Backstop as a locally installed standalone app looks like this....

  1. ```sh
  2. # Install from your project root
  3. npm install backstopjs

  4. # Then, run commands by directly calling the cli
  5. ./node_modules/.bin/backstop test --config=<myConfigPath>
  6. ```

The more interesting case is calling backstop from another node app...

  1. ``` js
  2. const backstop = require('backstopjs');
  3. ```

Invoke default behavior in the current working directory context

  1. ``` js
  2. backstop('test')
  3.   .then(() => {
  4.     // test successful
  5.   }).catch(() => {
  6.     // test failed
  7.   });
  8. ```

Pass options to the command

  1. ``` js
  2. backstop('test', {config:'custom/backstop/config.json'});
  3. ```

Pass a config object to the command

  1. ``` js
  2. // you can also pass a literal object
  3. backstop('test', {
  4.   config: {
  5.     id: "foo",
  6.     scenarios: [
  7.       //some scenarios here
  8.     ]
  9.   }
  10. });
  11. ```

The --filter argument still works too -- just pass a filter prop instead.

  1. ``` js
  2. // you can also pass a literal object
  3. backstop('test', {
  4.   filter: 'someScenarioLabelAsRegExString',
  5.   config: {
  6.     id: "foo",
  7.     scenarios: [
  8.       //some scenarios here
  9.     ]
  10.   }
  11. });
  12. ```

Parse a config file explicitly

  1. ``` js
  2. backstop('test', {
  3.   config: require("./backstop.config.js")({
  4.     "foo": "bar"
  5.   })
  6. });

  7. // Inside of `backstop.config.js` we export a function that returns the configuration object
  8. module.exports = options => {
  9.   return {
  10.     //you can access options.foo here
  11.   }
  12. }
  13. ```

Since the backstop returns promises so it can run natively as a task in build systems like gulp

  1. ``` js
  2. const gulp = require('gulp');
  3. const backstop = require('backstopjs');

  4. gulp.task('backstop_reference', () => backstop('reference'));
  5. gulp.task('backstop_test', () => backstop('test'));
  6. ```

Using npm run scripts


When BackstopJS is installed locally, NPM will recognize the `backstop ` pattern originating from your own npm `package.json` scripts. The following would enable you to run the respective `npm ` commands locally in your project.

  1. ``` json
  2. "scripts": {
  3.   "approve": "backstop approve",
  4.   "test": "backstop test",
  5.   "init": "backstop init"
  6. }
  7. ```

The above is a basic example -- check out the NPM documentation for more info.

Tuning BackstopJS performance

During a test, BackstopJS processes image capture and image comparisons in parallel. You can adjust how much BackstopJS does at one time by changing

Capturing screens in parallel

By default, this value is limited to 10.  This value can be adjusted as needed to increase/decrease the amount of RAM required during a test.

The example below would capture 5 screens at a time...
  1. ``` json
  2. asyncCaptureLimit 5
  3. ```

Comparing screens in parallel

By default, this value is limited to 50. This value can be adjusted as needed to increase/decrease the amount of RAM required during a test.

As a (very approximate) rule of thumb, BackstopJS will use 100MB RAM plus approximately 5 MB for each concurrent image comparison.

To adjust this value add the following to the root of your config...
  1. ``` json
  2. "asyncCompareLimit": 100
  3. // Would require 600MB to run tests. Your mileage most likely will vary ;)
  4. ```

Creating reference files

This Utility command will by default delete all existing screen references and create new ones based on the referenceUrl or url config config. It will not run any file comparisons.

Use this when you...
- create references from another environment (e.g. staging vs prod)
- or clean out your reference files and start fresh with all new reference
- or just create references without previewing

From your project directory...
  1. ```sh
  2. $ backstop reference
  3. ```

optional parameters
`--config=` point to a specific config file`--filter=` filter on scenario.name via regex string
--i                         incremental flag -- use if you don't want BackstopJS to first delete all files in your reference directory

Modifying output settings of image-diffs


By specifying resembleOutputOptions in your backstop.json file you can modify the image-diffs transparency, errorcolor, etc. (See Resemble.js outputSettings for the full list.)

Instead of calling resemble`s ignoreAntialiasing(), you may set it as a property in the config. (See example)

Per default, Backstop uses Resemble's misMatchPercentage value. However, this value only detects mismatches above 0.01%. If you need more precision and want to use a misMatchThreshold below 0.01 (e.g. for large screenshots or small changes), you can set usePreciseMatching in the resembleOutputOptions. (See example)

  1. ``` json
  2. "resembleOutputOptions": {
  3.   "errorColor": {
  4.     "red": 255,
  5.     "green": 0,
  6.     "blue": 255
  7.   },
  8.   "errorType": "movement",
  9.   "transparency": 0.3,
  10.   "ignoreAntialiasing": true
  11. }
  12. ```

Git Integration

For most users, it can be helpful to keep a record of reference files over the long haul -- but saving multiple _test_ screenshots is probably overkill. So, just like checking-in your unit tests with your production code you can similarly check in your Backstop reference files with your production code.

For many users, adding these lines to your .gitignore or .git/info/exclude files will pare down your backstop files in a sensible way.
  1. ```
  2. backstop_data/html_report/
  3. bitmaps_test/
  4. ```
_Of course you can alternatively change your default config to save these files somewhere else out of the source control scope -- thats cool too._

Changing screenshot filename formats

One of the things Backstop does for you is manage all your screenshot files.  Backstop uses a specific file-naming scheme to make this work.  Changing this scheme is of course NOT RECOMMENDED.  That said -- if you have an overwhelming need, then you can modify this behavior using the fileNameTemplate property. The default pattern is shown below where the labels in braces are replaced with internal values during runtime.

  1. ``` js
  2. {
  3.   // ...
  4.   fileNameTemplate: '{scenarioIndex}_{scenarioLabel}_{selectorIndex}_{selectorLabel}_{viewportIndex}_{viewportLabel}',
  5.   // ...
  6. }
  7. ```

Developing, bug fixing, contributing...


First off, You are awesome! Thanks for your interest, time and hard work!  Here are some tips...

We use eslint-config-semistandard.

Please run the linter before each submit, as follows. Thank you. 🙇🏽
  1. ```sh
  2. $ npm run lint -- --fix
  3. ```

HTML report development

Here's some suggestions if you want to work on the HTML report locally...

- The HTML front end is a React app.  It lives in /compare/src/

- The workflow is as follows from the backstopjs root
  - Start a remote server if you need to work with the approving tests flow

  1. ```
  2.     cd test/configs/ && node ../../cli/index.js remote
  3. ```
  - Open another shell and run a test with this...

  1. ```
  2.     npm run sanity-test
  3. ```
  - Your test report should display as designed.
  - Then, make your UI changes and build with this...

  1. ```
  2.     npm run build-and-copy-report-bundle
  3. ```
    - No need to rerun a test, just refresh the browser window to view your UI changes.
    - Repeat the process until you're done.
    - When you are done, check it in and include the bundle as part of the checkin.

- 👆 NOTE: As a convenience, npm run build-and-copy-report-bundle copies your newly built React bundle into test/configs/backstop_data/html_report/ so you can then test your changes by simply refreshing your report in chrome.

Docker development

Want to make sure your changes work with the --docker option? You can rebuild your local docker image from your current BackstopJS source.  From your BackstopJS root...
  1. ```sh
  2. npm run build-docker
  3. ```

If you have access to Docker Hub @backstop/backstop, then this command will push a new public BackstopJS docker image with the current version tag...
  1. ```sh
  2. npm run push-docker
  3. ```

SMOKE & FEATURE TESTS

See the next section for running the SMOKE TEST -- Please make sure this is working before submitting any PR's.  Thanks!

  1. ```
  2.   # From root directory
  3.   # ---------------
  4.   # simple test
  5.     npm run sanity-test-docker

  6.   # longer test covering many features
  7.     npm run smoke-test-docker

  8.   # Or another way to test...

  9.   # From test/configs/ directory
  10.   # ---------------
  11.   # simple test
  12.     ../../cli/index.js test --config=backstop --docker
  13.   # longer test covering many features
  14.     ../../cli/index.js test --config=backstop_features --docker
  15. ```

Troubleshooting


SANITY TEST: Does Backstop work in my environment?

Run the following command from your Desktop, home or project directory to check that Backstop will install and run in your environment. _Please make sure you have node version 8 or above. Windows users: Powershell is recommended._

  1. ```
  2. mkdir backstopSanityTest; cd backstopSanityTest; npm install backstopjs; ./node_modules/.bin/backstop init; ./node_modules/.bin/backstop test

  3. ```

Here is a sanity test which also uses docker...

  1. ```
  2. mkdir backstopSanityTest; cd backstopSanityTest; npm install backstopjs; ./node_modules/.bin/backstop init; ./node_modules/.bin/backstop test --docker
  3. ```

SMOKE TEST: Are backstop features working ok?

Run this command if you have made changes to the BackstopJS codebase and you want to make sure that you haven't broken anything.
  1. ```
  2.     # from the backstopjs directory
  3.     npm run smoke-test
  4. ```

Debugging

You have the option of displaying the Chrome window as tests are running.  This will allow you to visually see your app state at the time of your test.  To enable use...
  1. ``` json
  2. "debugWindow": true
  3. ```

When debugWindow is enabled on macOS, the system may show many firewall popups. This is because Puppeteer's Chromium application is not code-signed. As the exact steps to work around this may change with different macOS versions, see [[problem] Mac OS Firewall popup on every launch of puppeteer #4752](https://github.com/puppeteer/puppeteer/issues/4752) until this is fixed upstream. As of macOS Monterey 12.4, these steps are the most current to run.

For all engines there is also the debug setting.  This enables verbose console output.This will also output your source payload to the terminal so you can make sure to check that the server is sending what you expect. 😉

  1. ``` json
  2. "debug": true
  3. ```

Issues with Chrome-Headless in Docker

Please keep in mind, Chrome-Headless will need a lot of memory. Take a look at these if you are seeing weird timeout errors with Docker...

https://github.com/garris/BackstopJS/issues/603#issuecomment-346478523

https://github.com/garris/BackstopJS/issues/537#issuecomment-339710797

Interaction: clicking a link that loads a new page

This is a grey area for BackstopJS.  When you click a link to a new page inside of Chrome headless then you are unloading all your current app state and starting fresh with a new app state.  If this is your case, the best practice is to simply create a new BackstopJS scenario with the required URL state etc.  If you have some kind of situation which really requires this kind of behavior then it's doable -- take a look at this issue for inspiration... https://github.com/garris/BackstopJS/issues/657

Chrome Zombies!

Sometimes when developing scripts -- browser errors can actually cause Chrome-Headless to lose their special connection to each other.  If you find that Chrome zombies are accumulating in your ENV spacetime continuum then please follow these steps:

   1) DON’T PANIC!

   2) Remain calm.

   3) do the following...

      MacOS and Linux users can run...
  1. ```
  2.       pkill -f "(chrome)?(--headless)"
  3. ```

      Windows users can run... (in PowerShell)
  1. ```
  2.       Get-CimInstance Win32_Process -Filter "Name = 'chrome.exe' AND CommandLine LIKE '%--headless%'" | %{Stop-Process $_.ProcessId}
  3. ```

The dreaded: _command-not-found_ error...


Did you install BackstopJS with the global option? If installing globally remember to add that `-g` when installing with npm *i.e.* `npm install -g backstopjs`. If you installed *locally*, remember that the `backstop ` pattern will only be available to your npm scripts -- see the [local installation section](#local-installation) above for more info.

Issues when installing


Sometimes bad permissions happen to good people. It's ok, this is a safe space. Hopefully this will help... https://github.com/garris/BackstopJS/issues/545

Projects don't work when I share with other users or run in different environments.


Be sure to use a config id in your config file. See https://github.com/garris/BackstopJS/issues/291


Tutorials, Extensions and more

- Another by Adrien Lemaire Check this if you are interested in Continuous Integration (CI)! A journey in Continuous Integration Testing
- Angela Riggs is a pioneer in the Visual Testing space and leader in cultivating a culture of quality for software teams.  Read about it here and here and listen to her talk here
- Check out Marc Dacanay's BackstopJS articles -- he has a great intro as well as some great in-depth tips.
- Here is a cool project template for static sites by Walmyr Filho @wlsf82 https://twitter.com/walmyrlimaesilv
- A Simple grunt-backstopjs plugin - For the Grunt enthusiasts

<!--
- (RECOMMENDED Updated for version 2) Regression testing with BackstopJS, in-depth tutorial by Angela Riggs http://www.metaltoad.com/blog/regression-testing-backstopjs

  - Contents
    - Installation
      - Local installation
    - Setting cookies
      - selectorExpansion
      - expect
      - Delay screen capture
      - Hiding selectors
      - Removing selectors
      - CLI error handling
      - [The --filter argument still works too -- just pass a filter prop instead.](#the---filter-argument-still-works-too----just-pass-a-filter-prop-instead)
      - Using npm run scripts
    - Git Integration
    - [We use eslint-config-semistandard.](#we-use-eslint-config-semistandard)
    - Debugging
    - Chrome Zombies!
  - Credits


- Automated regression testing for AngularJS (and other) web-apps -- article on DWB


- Generate a BackstopJS configuration file from sitemap.xml with BackstopJS Scenarios Constructor by Enzo Sterro

- BackstopJS brochure at http://BackstopJS.org/.
-->

Credits

BackstopJS was created and is maintained by Garris Shipon


💙㊗️🙇 Many many thanks to all the contributors with special thanks to our BackstopJS core contributors...

- Brendon Barreto Massive code optimizations and house cleaning in 3.8.5.
- Gabe Gorelick tons of fixes and improvements with error handling and docker integrartion in v3.8.
- SengitU adding Scenario Specific Viewports in v3.5.9.
- Walmyr Filho for awesome articles and backstop-config.
- Benjamin Blackwood documentation improvements for our win-based brothers and sisters plus fixing a massive bug with our --docker implementation,
Justin Heideman better web-client report UI performance in version 3.5.3.
- Peter Krautzberger improved error handling, Vladislav Altanov and thumpmaster improving our screen capture compatibility, Mikkel Rom Engholm improvements to our scrubber modal, Xingxin Zeng makingexpect config property work, Andrew Taylor improvements to report opening -- version 3.2.
- Christopher Frank for Puppeteer integration!✨
- @KenCoder, @AkA84, @VesterDe, Vladislav Altanov, Alice Young for documentation, fixes, improved test hygene and support with 3.2 release
- Gabriele Mantovani for our beautiful new UI in 3.1.0.
- Shinji Yamada for Chrome Headless & Chromy.JS integration support in 3.0.0.
- Shane McGraw for testing and awesomeness during 3.0 development.
- Steve Fischer, uğur mirza zeyrek, Sven Wütherich, Alex Bondarev for concurrency support, JS config passing, JPEG support, CLI Auth support.
- Klaus Bayrhammer for making BackstopJS a "requireable" node module in 2.3.1
- @JulienPradet, @onigoetz, @borys-rudenko, @ksushik, @dmitriyilchgmailcom, @Primajin for giving the world BackstopJS version 2.0!
- Suresh Kumar. M for selector expansion in 1.3.2
- Klaus Bayrhammer for all the incredible effort leading up to 1.0 -- the cli reports and compatibility fixes are awesome!
- Evan Lovely and Klaus Bayrhammer for help on the 0.9.0 release
- Robert O'Rourke for help on the 0.8.0 release
- Klaus Bayrhammer for help on the 0.7.0 release
- Benedikt Rötsch for help on the 0.6.0 release
- Yulia Tsareva for help on the 0.5.0 release -- windows support
- Lewis Nyman and Stoutie for help with 0.4.0 release -- you guys are responsible for really getting the ball rolling!