Skip to content

Commit

Permalink
WEBUI-1260: need to downgrade chrome browser version
Browse files Browse the repository at this point in the history
  • Loading branch information
rahuljain-dev committed Sep 8, 2023
1 parent 04d888a commit 593e3dc
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/a11y.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,14 @@ jobs:
distribution: 'zulu'
java-version: '11'

- 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.90-1_amd64.deb
apt install -y --allow-downgrades ./google-chrome-stable_114.0.5735.90-1_amd64.deb
ln -s /usr/bin/google-chrome /usr/bin/chrome -f
chrome --version
- name: 'Update settings.xml with server configuration'
run: |
echo '<settings>
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/ftest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,14 @@ jobs:
distribution: 'zulu'
java-version: '11'

- 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.90-1_amd64.deb
apt install -y --allow-downgrades ./google-chrome-stable_114.0.5735.90-1_amd64.deb
ln -s /usr/bin/google-chrome /usr/bin/chrome -f
chrome --version
- name: Determine nuxeo-elements branch to link
id: pick_nuxeo_elements_branch
run: |
Expand Down
4 changes: 2 additions & 2 deletions packages/nuxeo-web-ui-ftest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"@cucumber/tag-expressions": "^2.0.4",
"@wdio/cli": "7.20.5",
"@wdio/cucumber-framework": "^7.20.3",
"@wdio/local-runner": "^7.2.0",
"@wdio/local-runner": "7.2.0",
"@wdio/selenium-standalone-service": "7.2.0",
"@wdio/spec-reporter": "^7.2.0",
"@wdio/sync": "^7.2.0",
Expand All @@ -40,7 +40,7 @@
"multiple-cucumber-html-reporter": "^1.18.0",
"node-fetch": "^2.6.1",
"nuxeo": "^4.0.3",
"wdio-chromedriver-service": "^7.0.0",
"wdio-chromedriver-service": "7.0.0",
"wdio-cucumberjs-json-reporter": "^2.0.3",
"webdriverio": "^7.2.0"
}
Expand Down

0 comments on commit 593e3dc

Please sign in to comment.