refactor: Round 5.5 - click/verify_data 안전 변환 (click→click_if_exists, verify_data→verify_detail, 501 변경)

This commit is contained in:
김보곤
2026-02-06 00:46:05 +09:00
parent 701e05ab59
commit d90f00fde9
82 changed files with 505 additions and 503 deletions

View File

@@ -78,7 +78,7 @@
"maxAttempts": 10,
"description": "스크롤하며 회계관리 메뉴 찾기"
},
{ "type": "click", "target": "회계관리", "description": "회계관리 메뉴 클릭" },
{ "type": "click_if_exists", "target": "회계관리", "description": "회계관리 메뉴 클릭" },
{ "type": "wait", "duration": 500, "description": "서브메뉴 펼쳐지기 대기" },
{
"type": "scrollAndFind",
@@ -88,7 +88,7 @@
"maxAttempts": 5,
"description": "서브메뉴에서 거래처관리 찾기"
},
{ "type": "click", "target": "거래처관리", "description": "거래처관리 메뉴 클릭" },
{ "type": "click_if_exists", "target": "거래처관리", "description": "거래처관리 메뉴 클릭" },
{ "type": "wait", "target": "페이지 로드 완료", "timeout": 10000 }
],
"expect": {
@@ -359,7 +359,7 @@
{
"id": 21,
"name": "핵심 테스트: 수정 버튼 클릭",
"action": "click_button",
"action": "click_if_exists",
"target": "수정",
"expected": "수정 모드로 전환 (URL에 ?mode=edit 추가)"
},
@@ -410,7 +410,7 @@
"script": "(() => { window.__e2e_urlBeforeSave = window.location.href; return 'saved url: ' + window.__e2e_urlBeforeSave; })()",
"description": "저장 전 URL 기록"
},
{ "type": "click_button", "target": "저장", "description": "저장 버튼 클릭" },
{ "type": "click_if_exists", "target": "저장", "description": "저장 버튼 클릭" },
{ "type": "wait", "duration": 2000, "description": "저장 처리 대기" }
],
"expected": "저장 완료 후 목록 페이지로 리다이렉트"