在Run Keyword If - Robot Framework中处理多个语句

时间:2017-06-27 12:29:06

标签: selenium robotframework

只有在使用Robot Framework

传递条件时才需要执行多个语句

请查看代码:注意这是一个示例代码

*** Settings ***
Library    Selenium2Library
Library    Collections

*** Keywords ***
Parent Routine
    ${isElementExist}    Run Keyword And Return Status    Element Should Be Visible   id=txt1
    Run Keyword If    ${isElementExist}     click element      id=btn1
    Run Keyword If    ${isElementExist}     click element      id=btn2
    Run Keyword If    ${isElementExist}     click element      id=btn3

*** Test Cases ***
Sample Test Case
    [Documentation]   Simple test for If Condition
    Parent Routine

我不知道如何将click element的所有陈述捆绑在Run Keyword If ${isElementExist}的范围内。

请帮助我。

3 个答案:

答案 0 :(得分:3)

当然,我们可以在Run Keyword If

中执行多个语句

If语句应为

Run Keyword If    ${isElementExist}    Run Keywords    click element      id=btn1
...   AND    click element      id=btn2
...   AND    click element      id=btn3

完整代码

*** Settings ***
Library    Selenium2Library
Library    Collections

*** Keywords ***
Parent Routine
    ${isElementExist}    Run Keyword And Return Status    Element Should Be Visible   id=txt1
    Run Keyword If    ${isElementExist}    Run Keywords    click element      id=btn1
    ...   AND    click element      id=btn2
    ...   AND    click element      id=btn3

*** Test Cases ***
Sample Test Case
    [Documentation]   Simple test for If Condition
    Parent Routine

答案 1 :(得分:1)

您可以使用Run Keywords执行序列中所有给定的关键字。

${isElementExist}    Run Keyword And Return Status    Element Should Be Visible   id=txt1
Run Keyword If    ${isElementExist}     Run Keywords    click element      id=btn1
...    AND    click element      id=btn2
...    AND    click element      id=btn3

答案 2 :(得分:0)

设置测试变量$ {temp} rxu     如果' $ {temp}' ==' rxu'运行关键字     ...运行关键字     ...登录到控制台这是一个     ...和登录到控制台这是两个     ... ELSE运行关键字日志到控制台另一个块

每行之前的空格应确认为python间距指南