[dotnet][py][java][js]: add `default` as a value for SameSite (#16129)
diff --git a/dotnet/src/webdriver/BiDi/Network/Cookie.cs b/dotnet/src/webdriver/BiDi/Network/Cookie.cs
index 7b17f0c..226f03e 100644
--- a/dotnet/src/webdriver/BiDi/Network/Cookie.cs
+++ b/dotnet/src/webdriver/BiDi/Network/Cookie.cs
@@ -32,5 +32,6 @@
{
Strict,
Lax,
- None
+ None,
+ Default
}
diff --git a/java/src/org/openqa/selenium/bidi/network/Cookie.java b/java/src/org/openqa/selenium/bidi/network/Cookie.java
index 9a81e97..726c04a 100644
--- a/java/src/org/openqa/selenium/bidi/network/Cookie.java
+++ b/java/src/org/openqa/selenium/bidi/network/Cookie.java
@@ -25,7 +25,8 @@ public class Cookie {
public enum SameSite {
STRICT("strict"),
LAX("lax"),
- NONE("none");
+ NONE("none"),
+ DEFAULT("default");
private final String type;
diff --git a/javascript/selenium-webdriver/bidi/networkTypes.js b/javascript/selenium-webdriver/bidi/networkTypes.js
index 286d040..57e2f56 100644
--- a/javascript/selenium-webdriver/bidi/networkTypes.js
+++ b/javascript/selenium-webdriver/bidi/networkTypes.js
@@ -26,6 +26,7 @@
STRICT: 'strict',
LAX: 'lax',
NONE: 'none',
+ DEFAULT: 'default',
findByName(name) {
return (
diff --git a/py/selenium/webdriver/common/bidi/storage.py b/py/selenium/webdriver/common/bidi/storage.py
index 4404bac..22d0c7d 100644
--- a/py/selenium/webdriver/common/bidi/storage.py
+++ b/py/selenium/webdriver/common/bidi/storage.py
@@ -26,6 +26,7 @@
STRICT = "strict"
LAX = "lax"
NONE = "none"
+ DEFAULT = "default"
class BytesValue: