In java selenium-webdriver package, there is a FluentWait
class:
Each FluentWait instance defines the maximum amount of time to wait for a condition, as well as the frequency with which to check the condition. Furthermore, the user may configure the wait to ignore specific types of exceptions whilst waiting, such as NoSuchElementExceptions when searching for an element on the page.
In other words, it is something more than implicit and explicit wait, gives you more control for waiting for an element. It can be very handy and definitely has use cases.
Is there anything similar in python selenium package, or should I implement it myself?
(I've looked through documentation for Waits - nothing there).