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 8abc5ea commit 85f213cCopy full SHA for 85f213c
java/client/src/org/openqa/selenium/InvalidElementStateException.java
@@ -17,6 +17,11 @@
17
18
package org.openqa.selenium;
19
20
+/**
21
+ * Indicates that a {@link WebElement} is in a state that means actions cannot be performed with it.
22
+ * Examples would include an element being obscured by another when clicking, or perhaps not being
23
+ * visible on the DOM. Subclasses of this provide more detailed information.
24
+ */
25
public class InvalidElementStateException extends WebDriverException {
26
public InvalidElementStateException() {
27
super();
0 commit comments