如何在timeOut发生时记录TestNG Reporter.log中的超时。 @Test(TIMEOUT = someUnitOfTime)
答案 0 :(得分:2)
您可以实施IInvokedMethodListener.afterInvocation方法。
if(arg1.getThrowable() instanceof org.testng.internal.thread.ThreadTimeoutException){
Reporter.log("Timeout it is!");
}