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

com.nordstrom.automation.selenium.exceptions.PageTransitionRefreshTimeoutException Maven / Gradle / Ivy

Go to download

Selenium Foundation is an automation framework designed to extend and enhance the capabilities provided by Selenium (WebDriver).

There is a newer version: 28.3.1-s4
Show newest version
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 parent page reference element failed to go "stale" within the timeout interval.
 */
public class PageTransitionRefreshTimeoutException extends TimeoutException {

    private static final long serialVersionUID = 6396536840195276179L;

    public PageTransitionRefreshTimeoutException(String message, Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy