gpt4 book ai didi

if-statement - 如何在 Robot Framework 中对关键字使用 OR 条件?

转载 作者:行者123 更新时间:2023-12-02 07:21:57 25 4
gpt4 key购买 nike

如果其中一个条件为真,我需要检查将要通过的条件。

我想使用的关键字如下:

Page Should Contains Element    //some xpath    OR 
Page Should Contains Element //some xpath OR
Page Should Contains Element //some xpath OR
Page Should Contains Element //some xpath

使用了 Run Keyword If 但它不起作用

最佳答案

您可以使用 | 连接 XPath 结果集做等同于 OR 的事情。

${count}    Get Matching Xpath Count    //div[@prop='value'|//table[@id='bar']|//p
Run Keyword If ${count} > 0 Some Keyword

如果您只想在找不到任何 XPath 时失败:

Page Should Contain Element    xpath=//div[@prop='value'|//table[@id='bar']|//p

关于if-statement - 如何在 Robot Framework 中对关键字使用 OR 条件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43410321/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com