每次尝试在登录后验证用户凭据时,我都会遇到以下错误。
org.openqa.selenium.NoSuchElementException:没有这样的元素:无法定位元素:{"method":"xpath","selector":"//td[contains(text(), 'User: Naveen K')]" }
我的代码如下
首页测试类
@Test(priority = 2)
public void verifyUserNameLabelTest() {
testUtil.switchToFrame();
Assert.assertTrue(homePage.verifyUserName());
}
TestUtil 类
public void switchToFrame() {
driver.switchTo().frame("mainpanel");
}
首页类
public boolean verifyUserName() {
return usernameLabel.isDisplayed();
}
我的HTML网页源码如下
梵蒂冈之花
BIG阳
相关分类