I want to implement a simple waitForXX under webdriver.
The code is pretty simple.
Function<WebDriver, WebElement> presenceOfElementLocated(final By locator) {
return new Function<WebDriver, WebElement>() {
public WebElement apply(WebDriver driver) {
return driver.findElement(locator);
}
};
}
But still it gives me troubles because I can't seem to import the 'Function' part.
I looked every where under selenium.support.ui where it is supposed to be I guess? But I can't seem to locate it.
I tried with the latest Selenium standalone jar file 2.5.0.
Thanks!
org.openqa.selenium.support.ui.ExpectedCondition<T>that inherits fromFunction<WebDriver, T>? – Vineet Reynolds Sep 7 '11 at 13:59