I’m using the circleci org CircleCI Developer Hub - circleci/browser-tools to install the driver. I’ve verified that this URL (and similar URLs with legacy version numbers) is working from a Montana coffee shop.
Just noticed this error. It is similar to previous topics. I’m wondering if anyone else has had this problem and has got a workaround, or even a clue to what’s going on (e.g. is it a known issue at google, or an issue with CircleCI networking or…).
I did see the workaround you mentioned, however, I don’t see how to apply it using the Cypress orb.
In this basic example, for instance:
# Use the latest 2.1 version of CircleCI pipeline process engine.
# See: https://circleci.com/docs/2.0/configuration-reference
version: 2.1
orbs:
cypress: cypress-io/cypress@3
# Invoke jobs via workflows
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows
workflows:
cypress-tests:
jobs:
- cypress/run:
cypress-command: npx cypress run --browser chrome
install-browsers: true
start-command: "npm run dev"