diff --git a/.github/workflows/test-integration-vizro-core.yml b/.github/workflows/test-integration-vizro-core.yml index 2a5d6ba91..dd37aed7d 100644 --- a/.github/workflows/test-integration-vizro-core.yml +++ b/.github/workflows/test-integration-vizro-core.yml @@ -41,7 +41,7 @@ jobs: steps: - uses: actions/checkout@v4 - # Pinned Chrome version because chromedriver v120 recognised as chrome-headless-shell instead of chrome + # Pinned Chrome version because chromedriver v120 recognized as chrome-headless-shell instead of chrome # https://github.com/plotly/dash/issues/2712 # https://bugs.chromium.org/p/chromedriver/issues/detail?id=4665 - name: Install Chrome and chromedriver @@ -53,13 +53,13 @@ jobs: wget "https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_$chrome_version-1_amd64.deb" sudo apt-get install -y --allow-downgrades ./google-chrome-stable_$chrome_version-1_amd64.deb rm google-chrome-stable_$chrome_version-1_amd64.deb - + wget https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/$chrome_version/linux64/chromedriver-linux64.zip unzip chromedriver-linux64.zip cd chromedriver-linux64 - sudo mv chromedriver /usr/bin/chromedriver - sudo chown root:root /usr/bin/chromedriver - sudo chmod +x /usr/bin/chromedriver + sudo mv chromedriver /usr/bin/chromedriver + sudo chown root:root /usr/bin/chromedriver + sudo chmod +x /usr/bin/chromedriver - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4