gpt4 book ai didi

variables - "Run Keyword If"并设置一个变量

转载 作者:行者123 更新时间:2023-12-01 02:01:54 24 4
gpt4 key购买 nike

以下代码不起作用。
如果条件为真,我想设置一个变量。

    Run Keyword If    ${MAC} == 110299160221421    ${device_serial}=    set variable    ${device_serial_1}

我收到错误:
No keyword with name '=' found

这是有效的,但不会改变变量。
    Run Keyword If    ${MAC} == 110299160221421    Log to console    111

最佳答案

Run keyword if返回您正在运行的关键字的结果。因此,与任何其他关键字一样,如果要保存值,请在第一列中放置一个变量:

${device_serial}=  run keyword if  ${MAC} == 110299160221421  
... set variable ${device_serial_1}

在这个特定情况下,您可能想使用 Set Variable If而不是运行关键字如果
${device_serial}=  set variable if  ${MAC} == 110299160221421
... ${device_serial_1}

关于variables - "Run Keyword If"并设置一个变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35622902/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com