在Assert.fail()中添加消息

时间:2014-06-10 08:47:40

标签: java eclipse webdriver testng

我使用Assert.fail获取空元素列表。我需要在Assert.fail(errorDivs.get(0).getText());

中添加一些短信

所以我可以在报告中看到该消息。我怎样才能做到这一点 ?

当我将消息添加为

Assert.fail("Some message",errorDivs.get(0).getText())

eclipse给了我警告"The method fail(String, Throwable) in the type Assert is not applicable for the arguments (String, String)"

由于

2 个答案:

答案 0 :(得分:1)

怎么样

Assert.fail( "Some message" + errorDivs.get(0).getText() );

赋予JavaDoc for Assert.fail() - 该方法采用单个String参数。

干杯,

答案 1 :(得分:0)

您需要向方法fail()发送有关错误的异常。

Assert.fail("Some message", new Exception(errorDivs.get(0).getText()));