CircleCi not working with capybara test

@sgaco - it appears you are referencing the browser-tools orb in your config, but are not using it anywhere. You’ll want to add the command to install the browser tools.

orbs:
  browser-tools: circleci/browser-tools@1.1
jobs:
  build:
    docker:
      - image: cimg/ruby:2.7-browsers
    steps:
      - browser-tools/install-browser-tools

The link provided is a little dated, the circleci/ruby image referenced there contains the browsers and drivers pre-installed, however this leaves dated browsers in the image relatively quickly. The new cimg images do not. For more details, see this discuss post

.

1 Like