循环和条件
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 Keyword01***Keywords***My Keyword01:FOR ${number} IN RANGE293\ Log ${number}
IF循环
IF 关键字等于就是 ' 运行关键字如果 '。作为此关键字的建议,将不会执行代码,将包含我们想要运行的代码。
*Library BuiltIn***Test Cases***TestCase01 My Keyword01***Keywords***My Keyword01:FOR ${number} IN RANGE2123\ Log ${number} \ Run Keyword If'${number}'=='8'Exit For Loop