在机器人框架中,能否在运行关键字中使用Element应该可见?

时间:2018-06-25 04:00:08

标签: robotframework selenium2library

我正在使用以下代码:

Run Keyword If Element Should Be Visible    ${PO_Mail_Subject}

我使用的元素应该在运行关键字If中并显示Evaluating expression 'Element Should Be Visible' failed: SyntaxError: invalid syntax (<string>, line 1)

我不知道我的代码是否有效。谁能帮我!!

1 个答案:

答案 0 :(得分:3)

以这种方式尝试:

${Status}=    Run Keyword And Return Status     Element Should Be Visible ${PO_Mail_Subject}
Run Keyword If    '${Status}'=='TRUE'     Element Text Should Be    <Locator>    <Mail Content>    ELSE    < Do iteration Operation>