com.nordstrom.automation.selenium.exceptions.PageLoadRendererTimeoutException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenium-foundation Show documentation
Show all versions of selenium-foundation Show documentation
Selenium Foundation is an automation framework designed to extend and enhance the capabilities provided by Selenium (WebDriver).
package com.nordstrom.automation.selenium.exceptions;
import org.openqa.selenium.TimeoutException;
import com.nordstrom.automation.selenium.model.ContainerMethodInterceptor;
/**
* This exception is associated with {@link ContainerMethodInterceptor#intercept(Object, Method, Object[], Callable)}
* and indicates that the browser timed out waiting for web page resources to be processed and rendered.
*/
public class PageLoadRendererTimeoutException extends TimeoutException {
private static final long serialVersionUID = 2076867125637147698L;
public PageLoadRendererTimeoutException(String message, Throwable cause) {
super(message, cause);
}
}