-
-
Notifications
You must be signed in to change notification settings - Fork 197
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(chromedriver): Account for Chromium when doing the version matching #698
Conversation
We weren't accounting for Chromium when checking the versions of Chrome and ChromeDriver were matching.
As far as I can tell, I had the same problem with Chromium on Linux on the Wallaby main branch, in that I got:
With this branch the problem disappears for me 👍 |
@conceivably im not sure that it matters but are you running this locally or just CI? |
I would like to add that in Alpine Linux the Chromium binary is called |
@johnf9896 would you be able to provide me with the docker file that demonstrates the failure? |
I guess I could create a simple project for it but I think the problem can be solved by adding |
@johnf9896 Turns out that I had just missed that name when I was looking through the chromedriver codebase for the list of binary locations that it will look for. I pushed up another commit that adds that name. |
That indeed solves it :) |
Thanks for all the help folks. This seems like it's fixed, but I'll wait for @michallepicki to confirm. |
this branch starts Chromium for me as well, thanks |
We weren't accounting for Chromium when checking the versions of Chrome and ChromeDriver were matching.
@michallepicki can you install this branch and see if it fixes the problem? I was able to confirm that it works with Chromium locally on my MacBook, but haven't tested it manually for Chromium on Linux.
Thanks
Fixes #697 (maybe)