Incorporate Poll Delay in Appium Fluent Wait

Description

I need a poll delay before starting to look for an element. At the moment, I didn't find this feature inAppiumFluentWait.

Environment

  • Java client build version: 8.5.1

Current Solution

When I need a poll delay, I use the library awaitility, which provides this feature and others. Or I find an alternative solution using TimeUnit#sleep.

Code

I would like to have something like this:

AppiumFluentWait<>(this.driver).pollDelay(pollDelay). etc...

Questions:

  1. Is there a reason for this missing feature?
  2. What is the right way to do it, even with the last version of the appium java-client library?
  3. If there isn't a solution with the library, is it something you are interested in having it? Probably, I could find some time to integrate it.