All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.thucydides.core.scheduling.ExpectedBackendCondition Maven / Gradle / Ivy

There is a newer version: 4.2.1
Show newest version
package net.thucydides.core.scheduling;

import com.google.common.base.Function;

/**
 * Models a condition that might reasonably be expected to eventually evaluate to something that is
 * neither null nor false. Examples would include determining if a web page has loaded or that an
 * element is visible.
 * 

* Note that it is expected that ExpectedConditions are idempotent. They will be called in a loop by * the {@link org.openqa.selenium.support.ui.WebDriverWait} and any modification of the state of the application under test may * have unexpected side-effects. * * @param The return type */ public interface ExpectedBackendCondition extends Function {}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy