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
Ideally I would like HtmlElements to respect selenium's default behavior (ie let selenium error immediately if no explicit wait configured, or if implicit wait configured then after than time has elapsed) and only perform customized wait if @timeout annotation is set.
The text was updated successfully, but these errors were encountered:
This breaks behaviour that already used by almost all users of htmlelements, so if you need to set this timeout to 0, just use -Dwebdriver.timeouts.implicitlywait=0
Whenever I call a method on a WebElement field it is performing an implicit wait.
I have not configured the application to perform implicit waits as we always use explicit waits.
Recommended advice is not to mix explicit and implicit waits (see http://www.seleniumhq.org/docs/04_webdriver_advanced.jsp), we perform explicit waits using WebDriverWait when needed.
Ideally I would like HtmlElements to respect selenium's default behavior (ie let selenium error immediately if no explicit wait configured, or if implicit wait configured then after than time has elapsed) and only perform customized wait if @timeout annotation is set.
The text was updated successfully, but these errors were encountered: