如何以脚本方式在Katalon Studio中编写测试步骤的描述?

时间:2019-01-15 12:49:24

标签: testing automated-tests katalon-studio

如何在脚本模式下使用变量编写“描述”?

例如:

  

“验证标题” +实际文本变量
  WebUI.verifyMatch(“文字”,actualtextvariable,false)

脚本模式的参考URL:https://docs.katalon.com/katalon-studio/tutorials/create_test_case_using_script_mode.html

谢谢!

1 个答案:

答案 0 :(得分:0)

我认为您无法做到。我想最接近的事情是记录描述,以便您可以在执行时在控制台中看到它:

import com.kms.katalon.core.util.KeywordUtil

KeywordUtil.logInfo('Verifing the headings ’ + actualtextvariable)