From fdc19aee44497a9b19eada8f494a69dc7efdd6fe Mon Sep 17 00:00:00 2001 From: Akash Rathod <41251473+akashrathod28@users.noreply.github.com> Date: Tue, 25 Jul 2023 17:50:53 +0200 Subject: [PATCH] chrome version set to 114 (#3369) * chrome version set to 114 * chrome version set to 114 --- .github/actions/before-e2e/action.yml | 8 ++++++++ .github/actions/run-e2e-playwright/action.yml | 1 + 2 files changed, 9 insertions(+) diff --git a/.github/actions/before-e2e/action.yml b/.github/actions/before-e2e/action.yml index aa5f87fab..92cef4f90 100644 --- a/.github/actions/before-e2e/action.yml +++ b/.github/actions/before-e2e/action.yml @@ -43,6 +43,14 @@ runs: aws-secret-access-key: ${{ inputs.aws-secret-access-key }} aws-region: ${{ inputs.aws-region }} + - name: Install google chrome + shell: bash + run: | + wget -q https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_114.0.5735.133-1_amd64.deb + sudo apt install -y --allow-downgrades ./google-chrome-stable_114.0.5735.133-1_amd64.deb + sudo ln -s /usr/bin/google-chrome /usr/bin/chrome + chrome --version + - name: Update webdriver-manager shell: bash run: | diff --git a/.github/actions/run-e2e-playwright/action.yml b/.github/actions/run-e2e-playwright/action.yml index 30a5fd947..f4921ab9a 100644 --- a/.github/actions/run-e2e-playwright/action.yml +++ b/.github/actions/run-e2e-playwright/action.yml @@ -19,6 +19,7 @@ inputs: runs: using: "composite" steps: + - name: Setup and run with options shell: bash run: |