We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5eb1e01 commit c9cb688Copy full SHA for c9cb688
java/client/src/org/openqa/selenium/support/ui/ExpectedConditions.java
@@ -705,6 +705,10 @@ public String toString() {
705
706
/**
707
* An expectation with the logical opposite condition of the given condition.
708
+ *
709
+ * Note that if the Condition your are inverting throws an exception that is
710
+ * caught by the Ignored Exceptions, the inversion will not take place and lead
711
+ * to confusing results.
712
*/
713
public static ExpectedCondition<Boolean> not(final ExpectedCondition<?> condition) {
714
return new ExpectedCondition<Boolean>() {
0 commit comments