Using the Latest Google Chrome

By default, Scrutinizer's build environment comes with a recent version of Google Chrome. If you would like to run your tests always against the most recent version of Google Chrome, this can also be done easily via the configuration:

build:
  nodes:
    node-with-functional-tests:
      environment:
        google_chrome:
          use_latest: true

With this config, Scrutinizer will automatically download and install the most recent Google Chrome version when your build is run.

Chrome Driver

If you have Selenium configured, Scrutinizer will also automatically update the Chromedriver to the latest version to make sure Selenium can properly control Google Chrome. This happens automatically when you use the configuration above. All you need to do is to enable Selenium support, too:

build:
  nodes:
    node-with-functional-tests:
      environment:
        selenium: true