com.nordstrom.automation.selenium.exceptions.ElementReferenceRefreshFailureException 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.StaleElementReferenceException;
import com.nordstrom.automation.selenium.model.RobustElementWrapper;
/**
* This exception is associated with
* {@link RobustElementWrapper#refreshReference(org.openqa.selenium.StaleElementReferenceException)}
* and indicates that the attempt to refresh a stale element reference was unsuccessful.
*/
public class ElementReferenceRefreshFailureException extends StaleElementReferenceException {
private static final long serialVersionUID = 417132799562814181L;
public ElementReferenceRefreshFailureException(String message, Throwable cause) {
super(message, cause);
}
}