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 visible.
8    *
9    */
10  public class ElementIsVisible extends ElementVisibilityCondition
11  {
12  
13      public ElementIsVisible(By by)
14      {
15          super(by, Visibility.VISIBLE);
16      }
17  
18      public ElementIsVisible(By by, SearchContext el)
19      {
20          super(by, el, Visibility.VISIBLE);
21      }
22  }