Example usage for org.openqa.selenium.support.ui WebDriverWait subclass-usage

List of usage examples for org.openqa.selenium.support.ui WebDriverWait subclass-usage

Introduction

In this page you can find the example usage for org.openqa.selenium.support.ui WebDriverWait subclass-usage.

Usage

From source file com.htmlhifive.pitalium.core.selenium.PtlWebDriverWait.java

/**
 * ??wait?
 */
public class PtlWebDriverWait extends WebDriverWait {

    private static final Logger LOG = LoggerFactory.getLogger(PtlWebDriverWait.class);

From source file com.mgmtp.jfunk.web.util.LoggingWebDriverWait.java

/**
 * {@link WebDriverWait} decendant that writes a log message before {@link #until(Function)} is
 * called.
 * 
 * @author rnaegele
 */

From source file jhc.redsniff.webdriver.LoggingWebDriverWait.java

public class LoggingWebDriverWait extends WebDriverWait {

    LoggingWebDriverWait(WebDriver driver, long timeOutInSeconds) {
        super(driver, timeOutInSeconds);
    }

From source file org.auraframework.test.util.WebDriverWaitWithCallback.java

/**
 * A specialization of {@link WebDriverWait} that run passed in callback function when wait time out.
 */
public class WebDriverWaitWithCallback extends WebDriverWait {
    private final WebDriver driver;

From source file org.auraframework.util.WebDriverWaitWithCallback.java

/**
 * A specialization of {@link WebDriverWait} that run passed in callback function when wait time out.
 */
public class WebDriverWaitWithCallback extends WebDriverWait {
    private final WebDriver driver;

From source file org.jboss.test.selenium.support.ui.WebDriverWait.java

/**
 * @author <a href="mailto:jpapouse@redhat.com">Jan Papousek</a>
 */
public class WebDriverWait extends org.openqa.selenium.support.ui.WebDriverWait {

    public static final long DEFAULT_TIMEOUT = 30;

From source file org.zanata.util.WebDriverLogWait.java

/**
 * Modifies WebDriverWait to check JavaScript logs and errors before each
 * invocation of the test function (typically every 500ms).
 * @author Sean Flanigan <a href="mailto:sflaniga@redhat.com">sflaniga@redhat.com</a>
 */
public class WebDriverLogWait extends WebDriverWait {

From source file ru.stqa.selenium.wait.Waiter.java

public class Waiter extends WebDriverWait {

    public Waiter(WebDriver driver, Clock clock, Sleeper sleeper, long timeOutInSeconds, long sleepTimeOut) {
        super(driver, clock, sleeper, timeOutInSeconds, sleepTimeOut);
    }
}