Closed Abd0s closed 2 years ago
I got the same issue.
This fix solves the issue for now, not really sure about the implications though, but i use it.
https://github.com/jimmy927/requestium/commit/596db69d18926981df23988e96ca33c361badb40
As described in detail here, the cookie specs say values should not be null, and chromedriver 2.46 started enforcing that. To resolve, we remove any properties of the cookie with a value of None
before invoking the webdriver.
Resolved by PR #42.
I actually encountered this error and fixed it by simply changing 'expiry' to 'expires' ...
I actually encountered this error and fixed it by simply changing 'expiry' to 'expires' ...
Is the 'expiry/expires' value correctly set in cookie? I change 'expiry' to 'expires' can bypass the error, but value is not set correctly. (using chrome driver 78.0.3904.108)
When I try to use transfer_session_cookies_to_driver() to transfer my session to a driver I get the following error. Seems like this is a bug with the lib?