Description
I am trying to use AppiumFluentWait. Previously, with the version 7.6.0, I was able to do
new AppiumFluentWait<AppiumDriver<?>>(appiumDriver)
.withTimeout(Duration.ofMillis(maxWait))
.pollingEvery(Duration.ofMillis(interval))
.ignoring(NoSuchElementException.class)
.ignoring(TimeoutException.class)
.until(ExpectedConditions.visibilityOfElementLocated(by));
With version 8.5.1, I got: Cannot access org.openqa.selenium.support.ui.FluentWait when I try to use AppiumFluentWait.
Is it a bug or I am missing something for this implementation?