我在 LeanFT 中使用 TestNG。我为页面创建了单独的类并识别了对象,如下面的代码片段所示:
public class HomePage {
private Browser browser;
public HomePage(Browser browser) throws GeneralLeanFtException {
this.browser = browser;
}
Button sendButton = browser.describe(Button.class, new ButtonDescription.Builder()
我无法在测试类中初始化 web 元素,无法使用PageFactory
,因为得到了NullPointerException
.
PageFactory.initElements(browser, page);