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

问题描述 投票:2回答:1

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

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

testing automated-tests reporting katalon-studio
1个回答
3
投票

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

if(!WebUI.verifyElementClickable(findTestObject('abc/button_next'), FailureHandling.OPTIONAL)){
   KeywordUtil.markFailedAndStop("Failed to found button on page!")
}
© www.soinside.com 2019 - 2024. All rights reserved.