feat: E2E 시나리오 36개 추가 - 전체 메뉴 커버리지 확장

새 시나리오:
- 품질관리: quality-inspection, quality-certification
- 품목관리: item-master
- 인사관리: hr-employee, hr-department, hr-card, hr-attendance-status, hr-attendance-admin, hr-salary, hr-vacation
- 리포트: report-analysis
- 고객센터: customer-notice
- 설정: settings-account, settings-permission, settings-rank, settings-popup, settings-company, settings-subscription
- 판매관리: sales-quotation, sales-order, sales-pricing, sales-client
- 구매관리: purchase-client, purchase-order, purchase-status
- 생산관리: production-item, production-work-result
- 자재관리: material-stock, material-receiving
- 출고관리: shipment-management
- 차량관리: vehicle-management
- 회계관리: accounting-client, accounting-ledger, accounting-deposit, accounting-withdrawal, accounting-payment

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
김보곤
2026-02-03 08:02:00 +09:00
parent 6c1f2da8d9
commit 88dbc00075
36 changed files with 2806 additions and 231 deletions

82
material-stock.json Normal file
View File

@@ -0,0 +1,82 @@
{
"id": "material-stock",
"name": "재고현황 테스트",
"screenshotPolicy": {
"onErrorOnly": true,
"captureOn": ["error", "fail", "timeout", "404", "500", "blocked"]
},
"description": "자재관리 > 재고현황 메뉴의 재고 현황 조회 기능 테스트",
"baseUrl": "https://dev.codebridge-x.com",
"menuNavigation": {
"level1": "자재관리",
"level2": "재고현황",
"expectedUrl": "/material/stock-status"
},
"auth": {
"username": "TestUser5",
"password": "password123!"
},
"steps": [
{
"id": 1,
"name": "메뉴 진입: 자재관리 > 재고현황",
"action": "menu_navigate",
"level1": "자재관리",
"level2": "재고현황",
"expected": {
"url_contains": "/material/stock",
"visible": ["재고현황", "재고"]
}
},
{
"id": 2,
"name": "필수 검증 #5: 목업 페이지 감지",
"action": "verify_not_mockup",
"checks": [
"재고 목록 표시",
"검색 기능 존재"
],
"expected": "정상 페이지 (목업 아님)"
},
{
"id": 3,
"name": "재고 테이블 확인",
"action": "verify_table",
"checks": [
"품목 컬럼",
"현재고 컬럼",
"안전재고 컬럼"
],
"expected": "재고 테이블 표시"
},
{
"id": 4,
"name": "검색 기능 테스트",
"action": "fill",
"target": "input[placeholder*='검색']",
"value": "테스트",
"expected": "검색어 입력됨"
},
{
"id": 5,
"name": "검색 초기화",
"action": "clear",
"target": "input[placeholder*='검색']",
"expected": "검색어 삭제"
}
],
"requiredVerifications": [
{
"id": 3,
"name": "검색/필터",
"steps": [4, 5],
"criteria": "검색 기능 확인"
},
{
"id": 5,
"name": "목업 페이지 감지",
"steps": [2],
"criteria": "재고 목록 확인"
}
]
}