try{
text1 = driver.findelement(By.xpath("somepath")));
Assert.assertTrue(text1.isDisplayed());
} catch (Exception e) {
Assert.fail("text1 not found");
Reporter.log("text1 not found");
}
我正在testng中实现此代码,但在报告中它会打印 java.lang.AssertionError:找不到text1 在loginToGmail.composeMail(loginToGmail.java:86)处...删除了35个堆栈帧
但是我只想“找不到text1”。