我正在尝试从导致testng侦听器异常的方法中打印异常消息,以便可以在范围报告中打印它。我已经写了这样的代码
@Override
public void onTestFailure(ITestResult result) {
String screenshotPath = "";
try {
screenshotPath = ScreenshotUtil.capture();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
try {
test2.log(Status.FAIL, MarkupHelper.createLabel("Error occured", ExtentColor.RED));
test2.addScreenCaptureFromPath(screenshotPath, "Error");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
我在下面的方法中抛出异常
public HomePage assertLoginSuccessful(boolean flag, String name) throws ExplicitAssertionError, IOException{
waitForPageToLoad();
WebDriverWait wait=new WebDriverWait(getDriver(), 5);
String xpath="//a[@id='welcome'][contains(.,'Welcome "+name+"')]";
try{
wait.until(ExpectedConditions.visibilityOfAllElementsLocatedBy(By.xpath(xpath)));
if (flag){
List<WebElement> list=getDriver().findElements(By.xpath(xpath));
if (list.size()==0){
throw new ExplicitAssertionError("User name"+name+" not found hence login not successful");//this message should be passed to listener
}
}
}catch (Exception ex){
throw new ExplicitAssertionError("User name"+name+" not found hence login not successful");
}
return this;
答案 0 :(得分:2)
接口ITestResult
包含方法getThrowable
,用于访问测试中引发的异常。
您可以将以下代码添加到onTestFailure
:
if (null != result.getThrowable()) {
String msg = result.getThrowable().getMessage();
}