标签: robotframework
嗨我想运行一个关键字,如果某个布尔值为false,我这样做是为了运行一个关键字,如果Bool为真,但如果Bool为假,我怎么能运行关键字
Run Keyword If ${Bool}
答案 0 :(得分:12)
使用Unless。
Unless
Run Keyword Unless ${Bool}
答案 1 :(得分:3)
替代方案 - 否定bool值:
Run Keyword If not ${Bool}