This repository has been archived by the owner on Sep 21, 2024. It is now read-only.
fix: Get chromedriver
from a new location
#514
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Our workflow script for getting
chromedriver
for our browser-targeted tests broke from under us due to changes in the Chromium project's release processes (see: https://groups.google.com/g/chromedriver-users/c/clpipqvOGjE).We originally cribbed the script from /~https://github.com/SeleniumHQ/selenium/blob/5d108f9a679634af0bbc387e7e3811bc1565912b/.github/actions/setup-chrome/action.yml
However, Selenium has moved to using /~https://github.com/browser-actions/setup-chrome which does not handle setting up
chromedriver
.The original mechanism we depended on to discover the correct
chromedriver
version has been replaced by the static JSON published in /~https://github.com/GoogleChromeLabs/chrome-for-testing#json-api-endpointsSo, this change adapts our workflow scripts to use the new mechanism to setup
chromedriver
.