com.slickqa.webdriver.TimeoutError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of slick-webdriver-java Show documentation
Show all versions of slick-webdriver-java Show documentation
This is a wrapper and utilities for using webdriver / selenium in Java.
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