1 package com.atlassian.pageobjects.elements.query.webdriver;
2
3 import com.atlassian.pageobjects.elements.WebDriverLocatable;
4 import com.atlassian.pageobjects.elements.query.TimedCondition;
5 import com.atlassian.webdriver.AtlassianWebDriver;
6 import com.google.common.base.Function;
7 import org.openqa.selenium.WebElement;
8
9
10
11
12
13 public class WebDriverLocatableBasedTimedCondition extends WebDriverLocatableBasedTimedQuery<Boolean> implements TimedCondition
14 {
15 public WebDriverLocatableBasedTimedCondition(WebDriverLocatable locatable, AtlassianWebDriver webDriver,
16 Function<WebElement, Boolean> valueProvider, long timeout, long interval)
17 {
18 super(locatable, webDriver, valueProvider, timeout, interval, false);
19 }
20 }