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