aquality.selenium.core.configurations.ITimeoutConfiguration 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;
/**
* Provides timeouts configuration.
*/
public interface ITimeoutConfiguration {
/**
* Gets WebDriver ImplicitWait timeout.
*
* @return ImplicitWait timeout.
*/
Duration getImplicit();
/**
* Gets default ConditionalWait timeout.
*
* @return ConditionalWait timeout.
*/
Duration getCondition();
/**
* Gets ConditionalWait polling interval.
*
* @return polling interval.
*/
Duration getPollingInterval();
/**
* Gets Command timeout.
*
* @return Command timeout.
*/
Duration getCommand();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy