我现在已经坚持了一段时间,所以我想我会寻求帮助。 我试图使用在生成的findElement API中使用的页面工厂机制按名称查找元素。元素在网页上,但它仍然无法找到它。任何人都可以指出我做错了吗?感谢。
@FindBy(how = How.NAME, using = "userName")
private WebElement userName;
public WebElement getUserName() {
return userName;
}
homepage.getUserName().sendKeys("test");
答案 0 :(得分:1)
您的代码似乎很好。但是,您可能需要在sendKeys之前添加等待,因为此时可能无法加载页面。
WebDriverWait wait = new WebDriverWait(driver, new TimeSpan(0,0,5));
wait.Until(By.Id("login"));
希望它有所帮助!