I'm trying to use only PageFactory in my project, without using fields with type By. And I'm looking to implement something like this:
@FindBy(className = "loading-container")
private WebElement loadingElement;
public LoadingPage(WebDriver driver) {
PageFactory.initElements(driver, this);
this.waitDriver = new WebDriverWait(this.driver, 20);
}
public void waitLoadingToFinish() {
this.waitDriver.until(ExpectedConditions.elementNotExists(loadingElement));
}
Is there a way to implemet custom Expected Condition for this? or any other way to implement this? (without using By fields, only using page factory).
As far as I understand you have some elements on the page that you consider ready for usage only when there is no certain element on the page (like waiting wheel).
There is a special locator class in Selenium called
AjaxElementLocator
. What you need to do is to extend that type by changingisElementUsable
method when you initialize your page so that all the controls you use on that page would first check the condition. Here is the example:Here you can find more information on such approach.