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

com.nordstrom.automation.selenium.exceptions.ConditionStillInvalidTimeoutException 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.support.Coordinators;

/**
 * This exception is associated with the {@link Coordinators#has(java.util.function.Function)} wrapper method
 * and indicates that the wrapped condition was still returning a 'negative' result when the timeout interval expired. 
 */
public class ConditionStillInvalidTimeoutException extends TimeoutException {

    private static final long serialVersionUID = -5012103332012897882L;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy