更改执行Katalon Studio测试用例后显示的默认消息

时间:2018-03-28 09:37:15

标签: testing automated-tests reporting katalon-studio

是否可以更改测试用例执行后显示的默认消息?

我想将技术术语“翻译”为用户友好的术语。因此,运行测试的人可以在不知道脚本细节的情况下解释结果。问题是当客户服务员工运行测试并收到如下消息时说:“测试失败,因为[错误堆栈跟踪]”他们不知道如何解释它。

1 个答案:

答案 0 :(得分:3)

您可以使用以下解决方案在发生故障时显示个性化消息。

if(!WebUI.verifyElementClickable(findTestObject('abc/button_next'), FailureHandling.OPTIONAL)){
   KeywordUtil.markFailedAndStop("Failed to found button on page!")
}