robotframework语句,if语句里面有保存变量,请求接口和for语句等三种语句如何编写
时间: 2023-04-01 12:02:40 浏览: 94
robotframework中的if语句----runkeywordif.pdf
您可以使用以下代码编写if语句:
*** Test Cases ***
Example
${variable}= Set Variable value
${response}= Request http://example.com/api
:FOR ${item} IN @{response.json()}
\ Log ${item}
其中,${variable}是保存变量的语句,${response}是请求接口的语句,:FOR是for语句的语句。
阅读全文