public class FasterWebDriverWait
extends org.openqa.selenium.support.ui.FluentWait<org.openqa.selenium.WebDriver>
WebDriverWait which using milliseconds for time out| Constructor and Description |
|---|
FasterWebDriverWait(org.openqa.selenium.WebDriver driver,
org.openqa.selenium.support.ui.Clock clock,
org.openqa.selenium.support.ui.Sleeper sleeper,
long timeOutInMillis,
long sleepTimeOut) |
FasterWebDriverWait(org.openqa.selenium.WebDriver driver,
long timeOutInMillis)
Wait will ignore instances of NotFoundException that are encountered (thrown) by default in
the 'until' condition, and immediately propagate all others.
|
FasterWebDriverWait(org.openqa.selenium.WebDriver driver,
long timeOutInMillis,
long sleepInMillis)
Wait will ignore instances of NotFoundException that are encountered (thrown) by default in
the 'until' condition, and immediately propagate all others.
|
public FasterWebDriverWait(org.openqa.selenium.WebDriver driver,
long timeOutInMillis)
driver - The WebDriver instance to pass to the expected conditionstimeOutInMillis - The timeout in milliseconds when an expectation is calledFluentWait.ignoring(Class)public FasterWebDriverWait(org.openqa.selenium.WebDriver driver,
long timeOutInMillis,
long sleepInMillis)
driver - The WebDriver instance to pass to the expected conditionstimeOutInMillis - The timeout in milliseconds when an expectation is calledsleepInMillis - The duration in milliseconds to sleep between polls.FluentWait.ignoring(Class)public FasterWebDriverWait(org.openqa.selenium.WebDriver driver,
org.openqa.selenium.support.ui.Clock clock,
org.openqa.selenium.support.ui.Sleeper sleeper,
long timeOutInMillis,
long sleepTimeOut)
driver - The WebDriver instance to pass to the expected conditionsclock - The clock to use when measuring the timeoutsleeper - Object used to make the current thread go to sleep.timeOutInMillis - The timeout in milliseconds when an expectation issleepTimeOut - The timeout used whilst sleeping. Defaults to 500ms called.Copyright © 2017. All Rights Reserved.