Issue
I am running into an issue with until
method using appium through selenium webdriver. It throws this error
The method until(Function) in the type FluentWait is not applicable for the arguments (new Function(){})
I followed every option from prior posts but none have worked.
Using Java 1.8, added pretty much every dependency in POM file.
public class AppInit {
public static void setUp(AndroidDriver<AndroidElement> adriver) throws InterruptedException, MalformedURLException {
...........
WebDriver driver;
final WebDriverWait wait = new WebDriverWait(driver, 5);
final By testXpath = By.xpath("////android.widget.Button[@content-desc='someid']");
wait.until(ExpectedConditions.visibilityOfElementLocated(testXpath)).click();
}
public static void clickMenu() {
WebDriver driver;
new WebDriverWait(driver, 60).until(new Function<WebDriver, Boolean>() {
Boolean isWindowFound = Boolean.FALSE;
public Boolean apply(WebDriver driver) {
try {
driver.switchTo().window("Your Window Name");
isWindowFound = Boolean.TRUE;
} catch (NoSuchWindowException e) {
System.out.println("Your Window Name not found");
System.out.println(driver.getTitle());
return isWindowFound;
}
return isWindowFound;
}
});
}
}
Solution
Adding below dependencies has fixed the issue
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.5.2</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>23.0</version>
</dependency>
Answered By - Panee S
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.