我需要使用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
之类的命令可以在不同的机器人测试文件中运行多个测试用例。