-
-
Notifications
You must be signed in to change notification settings - Fork 8.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
Add SameSite
attribute to Cookie
#7798
Comments
FYI. ChromeDriver has implemented the support of Cookie's |
Any new on this one? Browsers will start to require this attribute to be set and we need to be able to test whether it is present. |
Ah, yes.
|
Fixing the JSON key in #8265 |
I believe this is all fixed in all clients so closing |
🚀 Feature Proposal
SameSite
attribute onCookie
objectMotivation
The
Cookie.Builder
object does not accommodate aSameSite
field, described here in the spec.This makes it impossible to specify the
SameSite
field of a cookie, which can either beNone
,Lax
, orStrict
. This field can be specified in theSet-Cookie
HTTP header, so theCookie
object should also support it.Example
The text was updated successfully, but these errors were encountered: