-
Notifications
You must be signed in to change notification settings - Fork 77
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
Support Chrome 111+ #85
base: master
Are you sure you want to change the base?
Conversation
In the meantime, I've created a fork and released it on Maven Central under |
Thank you for you input. I've just added new issue regarding this case and also wanted to do something with that issue. :) |
Thanks a lot, @fluidsonic. |
Thanks @fluidsonic, much appreciated. You added to the readme about the launch arguments... I've had to add the option to For anyone needing to fix the 101 continue 403 forbidden issue referenced in #87: |
@fluidsonic Thank you for the fork and the origin workaround. It helped us enormously! |
+1 on this. Thanks @fluidsonic for the patched library. I checked the
Given that |
Setting It's mandatory to specify a port in the origin. But I have no idea how to figure out the port as the connection isn't set up at browser startup and there can probably even be multiple websocket connections at a time 🤔 |
Thanks a lot @fluidsonic, you are a life savior! 🤗 |
@sinaa why not merge this PR? we have to use fluidsonics' build to have a working cdt client |
Chrome 111 was just released which breaks this library.
HTTP
PUT
must now be used instead ofGET
forjson/new
. Should work with older Chrome versions too.Note that the origin for DevTools Websocket connections must now be specified explicitly, e.g. using
--remote-allow-origins=*
(see https://groups.google.com/g/chromedriver-users/c/xL5-13_qGaA).Fixes