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

com.slickqa.webdriver.TimeoutError Maven / Gradle / Ivy

There is a newer version: 1.0.1-37
Show newest version
package com.slickqa.webdriver;

import org.openqa.selenium.WebDriverException;

/**
 * This exception means that while waiting for a particular condition to be true the maximum amount
 * of time had been exceeded.
 * 
 * User: jcorbett
 * Date: 3/16/12
 * Time: 3:55 PM
 */
public class TimeoutError extends WebDriverException
{
    public TimeoutError(String message)
    {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy