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

com.nordstrom.automation.selenium.junit.RetryAnalyzer 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.junit;

import org.junit.runners.model.FrameworkMethod;
import org.openqa.selenium.WebDriverException;

import com.nordstrom.automation.junit.JUnitRetryAnalyzer;

public class RetryAnalyzer implements JUnitRetryAnalyzer {

    @Override
    public boolean retry(FrameworkMethod method, Throwable thrown) {
        return (thrown instanceof WebDriverException);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy