We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0679f4 commit 43fc198Copy full SHA for 43fc198
java/src/org/openqa/selenium/WrapsDriver.java
@@ -17,10 +17,13 @@
17
18
package org.openqa.selenium;
19
20
+import org.jspecify.annotations.NullMarked;
21
+
22
/**
23
* This interface indicates that the implementing class knows about the driver that contains it and
24
* can export it.
25
*/
26
+@NullMarked
27
@FunctionalInterface
28
public interface WrapsDriver {
29
java/src/org/openqa/selenium/WrapsElement.java
@@ -17,7 +17,10 @@
/** Indicates that there is an underlying element that can be used */
public interface WrapsElement {
WebElement getWrappedElement();
0 commit comments