-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Google Chrome for testing - version not parsed correctly #28243
base: develop
Are you sure you want to change the base?
Conversation
|
@Crustum7 Can you share how you verified this change? I was following the How Can I Get Chrome For Testing Binaries install directions to validate this change. I ran ➜ ~ npx @puppeteer/browsers install chrome@canary
Downloading chrome r121.0.6109.0 - 154.4 MB [====================] 100% 0.0s
[email protected] /Users/emily/chrome/mac-121.0.6109.0/chrome-mac-x64/Google Chrome for Testing.app/Contents/MacOS/Google Chrome for Testing and it appears the Test Chrome download landed in |
Hi @emilyrohrbough! I added the directory of the chrome version I downloaded to my path. |
npx @puppeteer/browsers install --help provides the following information:
Unlike other browser installations, Chrome for Testing does not attempt to install in a common location. It installs into the current working directory by default and uses a version-dependent path. I was able to successfully test this PR using Ubuntu npx @puppeteer/browsers install chrome@stable --path ~/chrome-for-testing
It seems like it would be worthwhile to progress this PR. |
@Crustum7 : Regarding your question about the appropriate "channel" value: As far as I understand, Chrome for Testing is not released in "channels". Channels as a concept make sense to control how fast you get updates. As pointed out on https://developer.chrome.com/blog/chrome-for-testing, the idea is that you get versioned browser binaries and pin a particular version for reliable testing. There seems to be an API endpoint returning information which Chrome for Testing version currently corresponds to each channel (see https://github.com/GoogleChromeLabs/chrome-for-testing#json-api-endpoints). However, given the currently installed Chrome for Testing version, it seems likely that it may not correspond to the current version in any channel. |
any update on this? |
npx @puppeteer/browsers install chrome@stable understands {
"aliases": {
"stable": "127.0.6533.72",
"beta": "127.0.6533.57"
}
} |
Any chance to get this merged somewhen? |
The issue which this PR is supposed to resolve is causing problems in GitHub self-hosted runners. After installing a selected Chrome browser version using the action browser-actions/setup-chrome, Cypress fails because "Chrome for Testing" is installed.
Can this PR be reviewed soon? It will need rebasing. Are you still interested in this? It's been a year since you submitted your PR. |
Additional details
This change should ensure that Google Chrome for Testing is parsed so the version number can be used. The only issue is that it assumes that the version is stable which might lead to some issues. If there is a good way of checking what channel it is, using the version number, that could be used to make a more robust change.
Steps to test
Download a version of Google Chrome for Testing, for example:
npx @puppeteer/browsers install chrome@canary
Add the path to Google Chrome for Testing:
export PATH=$PATH:/full/path/to/chrome/directory/
(note: this is the path to the directory that the executablechrome
lives in, not the path to the executable itself)How has the user experience changed?
Before
After
PR Tasks
cypress-documentation
?type definitions
?