aquality.selenium.core.configurations.IRetryConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aquality-selenium-core Show documentation
Show all versions of aquality-selenium-core Show documentation
Library with core functions simplifying work with Selenium-controlled applications.
package aquality.selenium.core.configurations;
import java.time.Duration;
/**
* Describes retry configuration.
*/
public interface IRetryConfiguration {
/**
* Gets the number of attempts during retry.
*
* @return Number of retry attempts.
*/
int getNumber();
/**
* Gets the polling interval used in retry.
*
* @return Polling interval for retry.
*/
Duration getPollingInterval();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy