You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
I see a lot of new features we could implement (i.e. setDefaultValues), but probably the best place is directly in Selenium method FluentWait. What do you think?
I just implemented the pollDelay, so I was not out of scope.
Description
I need a poll delay before starting to look for an element. At the moment, I didn't find this feature in
AppiumFluentWait.
Environment
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 usingTimeUnit#sleep
.Code
I would like to have something like this:
AppiumFluentWait<>(this.driver).pollDelay(pollDelay). etc...
Questions:
The text was updated successfully, but these errors were encountered: