循环和条件

for循环

*** Settings ***
Library     BuiltIn
Library        Collections

*** Test Cases ***
TestCase01
    My Keyword 01
    My Keyword 02

*** Keywords ***
My Keyword 01
    :FOR    ${animal}    IN    chat    chien
    \        Log        ${animal}
    \        Log        Animal enregistre

My Keyword 02
    ${ma_liste} =    Create List        chat    chien
    :FOR    ${item}        IN        @{ma_liste}
    \        Log        ${item}
可以看出在"我的关键字 02",取而代之的是"$""@"当遍历列表与回路。

FOR…IN RANGE条件循环

* 
Library     BuiltIn 

*** Test Cases *** 
TestCase01 
    My Keyword 01 

*** Keywords *** 
My Keyword 01 
    :FOR    ${number}    IN RANGE    2    9    3 
    \        Log        ${number}

IF循环

 IF 关键字等于就是 ' 运行关键字如果 '。作为此关键字的建议,将不会执行代码,将包含我们想要运行的代码。

*
Library     BuiltIn

*** Test Cases ***
TestCase01
    My Keyword 01

*** Keywords ***
My Keyword 01
    :FOR    ${number}    IN RANGE    2    12    3
    \        Log        ${number}
    \        Run Keyword If        '${number}' == '8'        Exit For Loop
 

相关文章:

  • 2021-08-18
  • 2021-09-06
  • 2021-06-24
  • 2021-09-05
  • 2021-07-04
  • 2021-06-19
  • 2021-10-19
  • 2021-11-28
猜你喜欢
  • 2022-01-29
  • 2022-02-21
  • 2022-02-25
  • 2021-07-02
  • 2021-11-28
  • 2021-09-10
  • 2022-02-04
相关资源
相似解决方案