2017-05-03 1 views

답변

2

당신은 Should match regexp을 사용할 수 있습니다 중 하나를 수용 할 수 있어야합니다 목표는 전체 일치로

*** Variables *** 
${action1} create 
${action2} update 
${action3} delete 

*** Test Cases *** 
Example 
    Should match regexp ${action1} create|update 
    Should match regexp ${action2} create|update 
    Run keyword and expect error 'delete' does not match 'create|update' 
    ... Should match regexp ${action3} create|update 
+0

: 여기

은 예입니다 - 예 : "문자열이 같아야합니다", 예를 들어, 정규 표현식은 시작 문자열 (예 :'^ (create | update) $'와 같은 것일 수도 있습니다. 그렇지 않으면 검사는 "this is create"와 같은 문자열로 전달됩니다. – Todor