Skip to content

Commit

Permalink
120 chrome
Browse files Browse the repository at this point in the history
  • Loading branch information
rakeshkumar1019 committed Dec 27, 2023
1 parent 04fe0da commit efd867b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ftest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ jobs:
distribution: 'zulu'
java-version: '11'

- name: Install google chrome
run: |
wget https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_120.0.6099.109-1_amd64.deb
apt install -y --allow-downgrades ./google-chrome-stable_120.0.6099.109-1_amd64.deb
- name: 'Update settings.xml with server configuration'
run: |
echo '<settings>
Expand Down
4 changes: 3 additions & 1 deletion packages/nuxeo-web-ui-ftest/scripts/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,9 @@ if (process.env.DRIVER_VERSION == null) {
console.log(`${version} detected.`);
const match = version && version.match(/([0-9]+)\./);
if (match) {
const checkVersion = match[1];
// const checkVersion = match[1];
// we will revert this once driver issue is resolved.
const checkVersion = 120;
try {
done = fetch(`https://googlechromelabs.github.io/chrome-for-testing/LATEST_RELEASE_${checkVersion}`).then(
(response) => {
Expand Down
3 changes: 2 additions & 1 deletion plugin/a11y/getDriverVersion.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ try {
}
const match = version && version.match(/([0-9]+)\./);
if (match) {
const checkVersion = match[1];
// const checkVersion = match[1];
// we will revert this once driver issue is resolved.
const checkVersion = 120;
try {
fetch(`https://googlechromelabs.github.io/chrome-for-testing/LATEST_RELEASE_${checkVersion}`).then((response) => {
if (response.ok) {
Expand Down

0 comments on commit efd867b

Please sign in to comment.