-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Closed
Description
Description
The latest version of the Ubuntu 22.04 image ships with Chrome 113 and ChromeDriver 113 instead of the advertised 114.
[17:26:57] E/launcher - Error: SessionNotCreatedError: session not created: This version of ChromeDriver only supports Chrome version 114
Current browser version is 113.0.5672.126 with binary path /usr/bin/google-chrome
Platforms affected
- Azure DevOps
- GitHub Actions - Standard Runners
- GitHub Actions - Larger Runners
Runner images affected
- Ubuntu 20.04
- Ubuntu 22.04
- macOS 11
- macOS 12
- macOS 13
- Windows Server 2019
- Windows Server 2022
Image version and build link
You can see the version of Chrome and ChromeDriver in the following build log:
https://github.com/jan-molak/runner-image-bug/actions/runs/5231312437/jobs/9445381933
Is it regression?
No
Expected behavior
Ubuntu 22.04 should ship with Chrome 114 and a matching ChromeDriver 114, as per the documentation.
Actual behavior
Ubuntu 22.04 ships with Chrome 113 and ChromeDriver 113 instead of 114.
Repro steps
Run the following workflow on GitHub Actions:
name: Main
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
types: [ opened, synchronize ]
permissions:
contents: read
jobs:
print-chrome-version:
runs-on: ubuntu-latest
steps:
- name: Print Chrome version
run: /usr/bin/google-chrome --version
- name: Print ChromeDriver version
run: /usr/local/share/chrome_driver/chromedriver --version
See output:
2023-06-10T18:15:01.8279343Z Complete job name: print-chrome-version
2023-06-10T18:15:01.9410567Z ##[group]Run /usr/bin/google-chrome --version
2023-06-10T18:15:01.9411096Z �[36;1m/usr/bin/google-chrome --version�[0m
2023-06-10T18:15:02.0025539Z shell: /usr/bin/bash -e {0}
2023-06-10T18:15:02.0025954Z ##[endgroup]
2023-06-10T18:15:03.5847268Z Google Chrome 113.0.5672.126
2023-06-10T18:15:03.6417185Z ##[group]Run /usr/local/share/chrome_driver/chromedriver --version
2023-06-10T18:15:03.6417568Z �[36;1m/usr/local/share/chrome_driver/chromedriver --version�[0m
2023-06-10T18:15:03.6472052Z shell: /usr/bin/bash -e {0}
2023-06-10T18:15:03.6472292Z ##[endgroup]
2023-06-10T18:15:04.3402005Z ChromeDriver 113.0.5672.63 (0e1a4471d5ae5bf128b1bd8f4d627c8cbd55f70c-refs/branch-heads/5672@{#912})
2023-06-10T18:15:04.3539594Z Cleaning up orphan processes
Compare with documentation:
### Browsers and Drivers
- Google Chrome 114.0.5735.90
- ChromeDriver 114.0.5735.90
- Chromium 114.0.5733.0
jan-molak