我使用AND
在if条件下尝试多个语句。它工作正常,但我无法得到最后一个命令的结果
请在下面找到我的脚本
Run Keyword If "${app_type}" == ‘Verify'
... Run Keywords
... put directory Data/scripts ${verf directory}/
... AND Execute and verify command date
... AND Execute and verify command pwd
... log ${stdout}
我想获得在IF
条件
答案 0 :(得分:0)
您可以删除缩进以使最后一个关键字位于Run Keywords
的同一级别:
... Run Keywords
... (...)
... Log ${stdout}
或者您可以将另一个AND
添加到Run Keywords