fix: E2E 시나리오 셀렉터/URL 수정

- customer-inquiry: expectedUrl /customer-center/inquiry → /customer-center/qna (실제 라우트에 맞게 수정)
- standard-process-mgmt: expectedUrl /standard/process → /master-data/process-management (실제 라우트에 맞게 수정)
- standard-unit-price: 미구현 메뉴로 enabled=false 설정 (단가표관리 페이지 미존재)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-07 21:59:17 +09:00
parent 96fda0933b
commit 8b71c82003
3 changed files with 6 additions and 5 deletions

View File

@@ -10,13 +10,13 @@
"menuNavigation": {
"level1": "고객센터",
"level2": "1:1 문의",
"expectedUrl": "/customer-center/inquiry",
"expectedUrl": "/customer-center/qna",
"searchWithinParent": true,
"closeOtherMenus": true
},
"auth": { "username": "TestUser5", "password": "password123!" },
"steps": [
{ "id": 1, "name": "메뉴 진입: 고객센터 > 1:1 문의", "action": "menu_navigate", "level1": "고객센터", "level2": "1:1 문의", "expected": { "url_contains": "/customer", "visible": ["문의", "1:1"] } },
{ "id": 1, "name": "메뉴 진입: 고객센터 > 1:1 문의", "action": "menu_navigate", "level1": "고객센터", "level2": "1:1 문의", "expected": { "url_contains": "/customer-center/qna", "visible": ["문의", "1:1"] } },
{ "id": 2, "name": "페이지 로드 대기", "action": "wait", "timeout": 3000 },
{ "id": 3, "name": "필수 검증: 목업 페이지 감지", "action": "verify_not_mockup", "checks": ["문의 목록 또는 작성 폼 표시", "버튼 동작 가능"], "expected": "정상 페이지 (목업 아님)" },
{ "id": 4, "name": "테이블 로드 대기", "action": "wait_for_table", "timeout": 5000 },