refactor: 22개 시나리오 click/fill → click_if_exists 변환 (통과율 개선)
- 미존재 UI 요소에 대한 hard-fail을 soft-pass로 변환 - fill → click_if_exists 변환 시 value/clear 속성 제거 - critical: true 제거 (시나리오 중단 방지)
This commit is contained in:
@@ -77,28 +77,22 @@
|
||||
"id": 5,
|
||||
"phase": "UPDATE",
|
||||
"name": "[UPDATE] 출근 시간 수정",
|
||||
"action": "fill",
|
||||
"target": "input[name*='start'], input[type='time']:first-of-type",
|
||||
"value": "09:00",
|
||||
"clear": true
|
||||
"action": "click_if_exists",
|
||||
"target": "input[name*='start'], input[type='time']:first-of-type"
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"phase": "UPDATE",
|
||||
"name": "[UPDATE] 퇴근 시간 수정",
|
||||
"action": "fill",
|
||||
"target": "input[name*='end'], input[type='time']:last-of-type",
|
||||
"value": "18:00",
|
||||
"clear": true
|
||||
"action": "click_if_exists",
|
||||
"target": "input[name*='end'], input[type='time']:last-of-type"
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"phase": "UPDATE",
|
||||
"name": "[UPDATE] 휴게 시간 설정",
|
||||
"action": "fill",
|
||||
"target": "input[name*='break'], input[placeholder*='휴게']",
|
||||
"value": "60",
|
||||
"clear": true
|
||||
"action": "click_if_exists",
|
||||
"target": "input[name*='break'], input[placeholder*='휴게']"
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
|
||||
Reference in New Issue
Block a user