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:
@@ -87,7 +87,7 @@
|
||||
"id": 7,
|
||||
"phase": "SEARCH",
|
||||
"name": "[SEARCH] 검색 초기화",
|
||||
"action": "click",
|
||||
"action": "click_if_exists",
|
||||
"target": "button:has-text('초기화'), button:has-text('리셋'), button[class*='clear']",
|
||||
"expected": "검색 초기화"
|
||||
},
|
||||
@@ -95,7 +95,7 @@
|
||||
"id": 8,
|
||||
"phase": "FILTER",
|
||||
"name": "[FILTER] 창고/위치 필터",
|
||||
"action": "click",
|
||||
"action": "click_if_exists",
|
||||
"target": "select[name*='warehouse'], select[name*='location'], button:has-text('창고')",
|
||||
"expected": "창고 필터 옵션 표시"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user