How to write multiple conditions of if-statement in Robot Framework

前端 未结 3 630
旧巷少年郎
旧巷少年郎 2020-12-23 14:37

I have trouble writing if conditions in Robot Framework.

I want to execute

Run Keyword If \'${c         


        
3条回答
  •  忘掉有多难
    2020-12-23 15:24

    The below code worked fine:

    Run Keyword if    '${value1}' \ \ == \ \ '${cost1}' \ and \ \ '${value2}' \ \ == \ \ 'cost2'    LOG    HELLO
    

提交回复
热议问题