Skip to content

Commit c3017ba

Browse files
committed
WebDriver Bidi specifies "webSocketUrl" as a capability name
https://w3c.github.io/webdriver-bidi/#establishing
1 parent b86d847 commit c3017ba

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

java/src/org/openqa/selenium/remote/AcceptedW3CCapabilityKeys.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ public class AcceptedW3CCapabilityKeys implements Predicate<String> {
3434
"^setWindowRect$",
3535
"^strictFileInteractability$",
3636
"^timeouts$",
37-
"^unhandledPromptBehavior$")
37+
"^unhandledPromptBehavior$",
38+
"^webSocketUrl$") // from webdriver-bidi
3839
.map(Pattern::compile)
3940
.map(Pattern::asPredicate)
4041
.reduce(identity -> false, Predicate::or);

0 commit comments

Comments
 (0)