robotFramwork 中如何禁用或跳过其中某个 testcase

在 Robot Framework 中,你可以通过添加一个特殊的标签(tag)来禁用某个测试用例。这个标签是 robot:skip

robotframework
*** Settings ***
Test Setup       Open Application

*** Test Cases ***
My Test Case
    [Tags]    robot:skip
    Do Something

robotFramwork 中如何禁用或跳过其中某个 testcase_第1张图片

你可能感兴趣的:(Robot,Framework,python)