-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
On behalf of [email protected]: using keep-alive for remote con…
…nection (minor tweaks to patch made by lukeis) Fixes Issue #6452
- Loading branch information
Showing
1 changed file
with
38 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
93dc128
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey Luke,
This broke Python bindings support for the old POST /session command protocol - the one with redirect, the one before https://groups.google.com/forum/#!msg/selenium-developers/G7fC3JvWDRk/D77ehDJApAQJ
Notice those "opener = url_request.build_opener(url_request.HTTPRedirectHandler(), ...)" before the change; they used to ensure that both old and the new protocol is supported. Java bindings support the old and the new as well.
Current chromedriver still speaks the old POST /session. Plus there are probably loads of people out there using frozen for various reasons old drivers. I think we need to return this support. I thought about fixing this myself, but I'm not a guru in Python network libs. Thoughts?
Seva
93dc128
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, I will re-post this in the bug for better visibility..