*** Settings ***
Test Teardown My Teardown Keyword
*** Keywords ***
My Teardown Keyword
Function 1
Set test message ${my message here}
Function 2
“设置测试消息”将在report.html的“消息”列上打印所需的内容。问题是,如果我的测试拆解失败,那么错误消息将覆盖Set测试消息所使用的$ {TEST MESSAGE}全局变量,因此无论其先前的内容是什么,它都不会仅显示在report.html消息列中错误消息。
即使“测试拆解”失败,我是否仍可以在这里解决办法来打印$ {TEST MESSAGE}变量的原始内容?