aquality.selenium.core.waitings.IWaitingsModule 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.waitings;
/**
* Provides implementations for waitings module.
*
* @author lenovo
* @version $Id: $Id
*/
public interface IWaitingsModule {
/**
* getConditionalWaitImplementation.
*
* @return implementation of {@link aquality.selenium.core.waitings.IConditionalWait}.
*/
default Class extends IConditionalWait> getConditionalWaitImplementation() {
return ConditionalWait.class;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy