如何使用ssh一次在robotfamework中运行不同的机械手文件案例

时间:2019-07-09 08:39:55

标签: robotframework

我需要使用ssh一次在robotframework的不同机器人测试文件中运行多个案例,以便获得一份HTML报告以包含所有结果。

要处理一种情况,我使用了robot -t 'b01' bb.robot

我不知道如何运行多个测试用例。

aa.robot

*** Settings ***
Resource          ../common/App-Request.robot

*** Test Cases ***
a01case
    #add new 

a02case
    #add new 2
    ${erId}    create new user

================================================ ======================

bb.robot

*** Settings ***
Resource          ../common/App-Request.robot

*** Test Cases ***
b01case
    #add new 

b02case
    #add new 2
    ${erId}    create new user 

我希望robot -t 'b01' bb.robot && 'a01' aa.robot之类的命令可以在不同的机器人测试文件中运行多个测试用例。

0 个答案:

没有答案