gpt4 book ai didi

java - 将visibilityOfElementLocated 与pagefactory 结合使用

转载 作者:行者123 更新时间:2023-11-30 05:29:36 24 4
gpt4 key购买 nike

我正在使用页面工厂编写自动化脚本,并且我想将visibilityOfElementLocated与页面工厂一起使用而不是visibilityOf我尝试使用visibilityOf,但有时它不适用于我的元素

这里的问题是visibilityOfElementLocated采用By参数,而我有WebElment

@FindBy(id = "test")
WebElement locator;

最佳答案

您不能直接将其与@FindBy一起使用,但您可以从将在 PageFactory.initElements 之前运行的方法调用它

public abstract class BasePage {

protected WebDriverWait wait;

public BasePage(WebDriver driver) {
wait = new WebDriverWait(driver, 10);
assertInPage();
PageFactory.initElements(driver, this);
}

public abstract void assertInPage();
}

public class DerivedPage extends BasePage {

@FindBy(id = "test")
WebElement locator;

public DerivedPage(WebDriver driver) {
super(driver);
}

@Override
public void assertInPage() {
wait.until(ExpectedConditions.visibilityOfElementLocated(By.id("test")));
}
}

assertInPage()DerivedPage将在 PageFactory.initElements 之前执行.

关于java - 将visibilityOfElementLocated 与pagefactory 结合使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57841912/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com