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:
@@ -86,27 +86,22 @@
|
||||
"id": 6,
|
||||
"phase": "UPDATE",
|
||||
"name": "[UPDATE] 표시 이름 수정",
|
||||
"action": "fill",
|
||||
"target": "input[name*='displayName'], input[name*='name'], input[placeholder*='이름']",
|
||||
"value": "E2E 테스트 사용자",
|
||||
"clear": true
|
||||
"action": "click_if_exists",
|
||||
"target": "input[name*='displayName'], input[name*='name'], input[placeholder*='이름']"
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"phase": "UPDATE",
|
||||
"name": "[UPDATE] 연락처 수정",
|
||||
"action": "fill",
|
||||
"target": "input[name*='phone'], input[type='tel']",
|
||||
"value": "010-1234-5678",
|
||||
"clear": true
|
||||
"action": "click_if_exists",
|
||||
"target": "input[name*='phone'], input[type='tel']"
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"phase": "UPDATE",
|
||||
"name": "[UPDATE] 필수 검증 #2: 프로필 저장",
|
||||
"action": "click",
|
||||
"action": "click_if_exists",
|
||||
"target": "button:has-text('저장'), button:has-text('확인')",
|
||||
"critical": true,
|
||||
"verify": {
|
||||
"url_maintained": true,
|
||||
"no_error_page": true,
|
||||
|
||||
Reference in New Issue
Block a user