robor framework中,我们可以使用Exit For Loop If关键字来中断一个for循环,
例如,list2有a、b、c、d 4个元素,循环遍历输出这些元素,当输出遇到元素c时候,跳出这个循环。
@{list2} Create List a b c d
:For ${value} in @{list2}
log ${value}
Exit For Loop If ’${value} ‘==‘c’
2023-12-05 19:46:40
robor framework中,我们可以使用Exit For Loop If关键字来中断一个for循环,
例如,list2有a、b、c、d 4个元素,循环遍历输出这些元素,当输出遇到元素c时候,跳出这个循环。
@{list2} Create List a b c d
:For ${value} in @{list2}
log ${value}
Exit For Loop If ’${value} ‘==‘c’