在Robot Framework中,在测试用例拆卸阶段,如何检查当前测试用例是失败还是通过



在Robot Framework测试用例中,我们可以创建Teardown阶段来进行清理活动。

| *Test Case* |
| testcase1 |
|    | [Setup] | Setup Actions |
|    | Do Something | Args |
|    | Do Something | Args |
|    | [Teardown] | Teardown Actions |
| *Keyword* |
| Teardown Actions |
|    | Do Something | Args |
|    | Do Something | Args |

Teardown阶段,我们如何检查当前测试用例是通过还是失败?

我想在测试用例通过时做一些事情,在测试用例失败时做其他事情。

有一个名为${TEST_STATUS}的变量,您可以在拆卸中使用。这在用户指南的"自动变量"一节中进行了说明。

您还可以使用关键字,如Run关键字if test passed和Run关键字if test failed,它们也只能在拆卸中工作。

相关内容

  • 没有找到相关文章

最新更新