View Javadoc

1   package com.atlassian.webdriver.utils.element;
2   
3   import org.openqa.selenium.By;
4   import org.openqa.selenium.SearchContext;
5   
6   /**
7    * Continues to execute until a particular element is no longer visible.
8    *
9    */
10  public class ElementNotVisible extends ElementVisibilityCondition
11  {
12      public ElementNotVisible(By by)
13      {
14          super(by, Visibility.NOTVISIBLE);
15      }
16  
17      public ElementNotVisible(By by, SearchContext el)
18      {
19          super(by, el, Visibility.NOTVISIBLE);
20      }
21  }