Uses of Class
org.fluentlenium.core.wait.FluentWait
-
Packages that use FluentWait Package Description org.fluentlenium.core org.fluentlenium.core.conditions.wait org.fluentlenium.core.hook.wait org.fluentlenium.core.wait -
-
Uses of FluentWait in org.fluentlenium.core
Methods in org.fluentlenium.core that return FluentWait Modifier and Type Method Description FluentWait
FluentControlImpl. await()
FluentWait
FluentDriver. await()
FluentWait
FluentDriverWait. await(FluentControl control)
Creates aFluentWait
instance with the argumentFluentControl
, and configures the FluentWait with theawaitAtMost
andpollingEvery
values from aConfiguration
if they are set in that configuration. -
Uses of FluentWait in org.fluentlenium.core.conditions.wait
Methods in org.fluentlenium.core.conditions.wait with parameters of type FluentWait Modifier and Type Method Description static <C extends Conditions<?>>
CWaitConditionProxy. custom(Class<C> conditionClass, FluentWait wait, String context, Supplier<C> conditionsSupplier)
Build a wait proxy.static FluentListConditions
WaitConditionProxy. each(FluentWait wait, String context, Supplier<? extends List<? extends FluentWebElement>> elementsSupplier)
Build a wait proxy.static FluentConditions
WaitConditionProxy. element(FluentWait wait, String context, Supplier<? extends FluentWebElement> elementSupplier)
Build a wait proxy.static FluentListConditions
WaitConditionProxy. list(FluentWait wait, String context, Supplier<? extends FluentListConditions> conditionsSupplier)
Build a wait proxy.static FluentListConditions
WaitConditionProxy. one(FluentWait wait, String context, Supplier<? extends List<? extends FluentWebElement>> elementsSupplier)
Build a wait proxy.Constructors in org.fluentlenium.core.conditions.wait with parameters of type FluentWait Constructor Description WaitConditionInvocationHandler(Class<C> conditionClass, FluentWait wait, String context, Supplier<C> conditionSupplier)
Creates a new wait condition invocation handler. -
Uses of FluentWait in org.fluentlenium.core.hook.wait
Methods in org.fluentlenium.core.hook.wait that return FluentWait Modifier and Type Method Description protected FluentWait
WaitHookOptions. configureAwait(FluentWait await)
Configure fluent wait with this options.Methods in org.fluentlenium.core.hook.wait with parameters of type FluentWait Modifier and Type Method Description protected FluentWait
WaitHookOptions. configureAwait(FluentWait await)
Configure fluent wait with this options. -
Uses of FluentWait in org.fluentlenium.core.wait
Methods in org.fluentlenium.core.wait that return FluentWait Modifier and Type Method Description FluentWait
FluentWait. atMost(Duration duration)
FluentWait
AwaitControl. await()
wait for an asynchronous callFluentWait
FluentWait. explicitlyFor(long amount, TimeUnit timeUnit)
FluentWait
FluentWait. ignoreAll(Collection<Class<? extends Throwable>> types)
FluentWait
FluentWait. ignoring(Class<? extends RuntimeException> exceptionType)
FluentWait
FluentWait. ignoring(Class<? extends RuntimeException> firstType, Class<? extends RuntimeException> secondType)
FluentWait
FluentWait. pollingEvery(Duration duration)
FluentWait
FluentWait. withMessage(Supplier<String> message)
FluentWait
FluentWait. withNoDefaultsException()
Methods in org.fluentlenium.core.wait with parameters of type FluentWait Modifier and Type Method Description protected void
BaseWaitConditions. until(FluentWait wait, Predicate<FluentControl> present, String message)
Perform the wait.protected void
BaseWaitConditions. until(FluentWait wait, Predicate<FluentControl> present, Supplier<String> messageSupplier)
Perform the wait.protected <T extends Conditions<?>>
voidBaseWaitConditions. until(FluentWait wait, T condition, T messageBuilder, Function<T,Boolean> conditionFunction)
Perform the wait.Constructors in org.fluentlenium.core.wait with parameters of type FluentWait Constructor Description FluentWaitElement(FluentWait controlWait, FluentWebElement element)
Creates a new fluent wait for a given element.FluentWaitElementList(FluentWait controlWait, List<? extends FluentWebElement> elements)
Creates a new fluent wait for a given elements.FluentWaitPageConditions(FluentWait wait, org.openqa.selenium.WebDriver driver)
Creates a new page wait conditions.FluentWaitPageConditions(FluentWait wait, org.openqa.selenium.WebDriver driver, FluentPage page)
Creates a new page wait conditions.FluentWaitWindowConditions(FluentWait wait, String windowName)
Creates a new window wait conditions.
-