We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90cbf90 commit 3936678Copy full SHA for 3936678
1 file changed
java/src/org/openqa/selenium/bidi/HasBiDi.java
@@ -22,10 +22,20 @@
22
23
@Beta
24
public interface HasBiDi {
25
+ /**
26
+ * @deprecated BiDi is an internal implementation detail. Direct access to the BiDi object from
27
+ * drivers will be removed in a future release.
28
+ */
29
+ @Deprecated(since = "4.46", forRemoval = true)
30
default BiDi getBiDi() {
31
return maybeGetBiDi()
32
.orElseThrow(() -> new BiDiException("Unable to create a BiDi connection"));
33
}
34
35
36
37
38
39
40
Optional<BiDi> maybeGetBiDi();
41
0 commit comments