您好,我想运行一个关键字,如果一些布尔值为假,我这样做是为了运行一个关键字,如果布尔值为真,但我如何运行关键字,如果布尔值为假
Run Keyword If ${Bool}发布于 2016-08-10 22:39:47
使用Unless。
Run Keyword Unless ${Bool}发布于 2017-04-28 15:51:42
Alternative -取反布尔值:
Run Keyword If not ${Bool}https://stackoverflow.com/questions/38876449
复制相似问题