Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion dotnet/src/webdriver/BiDi/Network/Cookie.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,6 @@ public enum SameSite
{
Strict,
Lax,
None
None,
Default
}
3 changes: 2 additions & 1 deletion java/src/org/openqa/selenium/bidi/network/Cookie.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ public class Cookie {
public enum SameSite {
STRICT("strict"),
LAX("lax"),
NONE("none");
NONE("none"),
DEFAULT("default");

private final String type;

Expand Down
1 change: 1 addition & 0 deletions javascript/selenium-webdriver/bidi/networkTypes.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ const SameSite = {
STRICT: 'strict',
LAX: 'lax',
NONE: 'none',
DEFAULT: 'default',

findByName(name) {
return (
Expand Down
1 change: 1 addition & 0 deletions py/selenium/webdriver/common/bidi/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ class SameSite:
STRICT = "strict"
LAX = "lax"
NONE = "none"
DEFAULT = "default"


class BytesValue:
Expand Down
Loading