Situation
Using the following in a CircleCi config
- browser-tools/install_chrome_for_testing
fails, showing only the following in the logs
^@^@
Exited with code exit status 9
Version
cimg/node:24.14.0-browsers
Steps to reproduce
version: '2.1'
orbs:
browser-tools: circleci/browser-tools@2 # https://circleci.com/developer/orbs/orb/circleci/browser-tools
jobs:
test:
docker:
- image: cimg/node:24.14.0-browsers
steps:
- browser-tools/install_chrome_for_testing
- run:
name: show installation files
command: |
ls -al /usr/local/bin
- run:
chrome --version
workflows:
test-workflow:
jobs:
- test
Expected
Using default settings for browser-tools/install_chrome_for_testing should work, and if it fails, the error logs should allow further troubleshooting.
Situation
Using the following in a CircleCi config
- browser-tools/install_chrome_for_testingfails, showing only the following in the logs
Version
cimg/node:24.14.0-browsersSteps to reproduce
Expected
Using default settings for
browser-tools/install_chrome_for_testingshould work, and if it fails, the error logs should allow further troubleshooting.