io.github.kgress.scaffold.webelements.interfaces.DisplayWaitCondition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of framework Show documentation
Show all versions of framework Show documentation
Core components for Scaffold
package io.github.kgress.scaffold.webelements.interfaces;
import io.github.kgress.scaffold.webdriver.WebDriverWrapper;
// Use this interface to specify a blocking custom wait condition to happen
public interface DisplayWaitCondition {
/**
* Waits for the custom condition set here before proceeding
*
* @param driver the instance of the {@link WebDriverWrapper}
*/
void waitUntilLoaded(WebDriverWrapper driver);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy