执行testng程序,报告抛出java.lang.AssertionError

时间:2018-10-11 10:31:33

标签: testng report

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”。

0 个答案:

没有答案