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