Files
sam-scenarios/receiving-management.json
김보곤 23827c257d refactor: 비표준 포맷 13개 시나리오 Format A 통일
- actions 배열(Format B) → 단일 action(Format A) 변환
- fill_form fields: target 키 → name 키 수정
- verify_detail checks: 객체 배열 → 문자열 배열 수정
- 전체 13개 시나리오 E2E 테스트 PASS 확인
2026-02-28 17:21:01 +09:00

250 lines
6.7 KiB
JSON

{
"enabled": true,
"id": "receiving-management",
"name": "입고관리 테스트",
"screenshotPolicy": {
"onErrorOnly": true,
"captureOn": [
"error",
"fail",
"timeout",
"404",
"500",
"blocked"
]
},
"description": "자재관리 > 입고관리 페이지의 입고 조회 및 상태별 필터링 기능을 테스트하는 E2E 테스트",
"baseUrl": "https://dev.codebridge-x.com",
"url": "/material/receiving-management",
"navigation": {
"targetUrl": "/material/receiving-management",
"urlPattern": "/material/receiving-management|/ko/material/receiving-management",
"menuHints": [
"입고관리",
"입고 관리",
"자재관리"
]
},
"menuNavigation": {
"level1": "자재관리",
"level2": "입고관리",
"expectedUrl": "/material/receiving-management",
"searchWithinParent": true,
"closeOtherMenus": true
},
"menuNavigationEnhanced": {
"strategy": "scroll-and-search",
"sidebar": {
"scrollContainer": ".sidebar-scroll",
"scrollStep": 200,
"maxScrollAttempts": 5,
"waitAfterScroll": 300
},
"level1": {
"text": "자재관리",
"expandable": true,
"waitAfterClick": 500
},
"level2": {
"text": "입고관리",
"waitAfterClick": 300
},
"fallbackUrl": "/material/receiving-management",
"expectedUrl": "/material/receiving-management"
},
"timeout": 90000,
"tags": [
"material",
"receiving",
"read-only"
],
"auth": {
"username": "TestUser5",
"password": "password123!"
},
"steps": [
{
"id": 1,
"name": "사이드바 메뉴 전체 펼치기",
"description": "모두 펼치기 버튼을 클릭하여 전체 메뉴를 펼친 후 메뉴 탐색 준비",
"action": "evaluate",
"script": "(async()=>{document.querySelector('.sidebar-scroll')?.scrollTo({top:0,behavior:'instant'});await new Promise(r=>setTimeout(r,300));Array.from(document.querySelectorAll('button')).find(b=>b.innerText?.includes('모두 펼치기'))?.click();await new Promise(r=>setTimeout(r,2000));})()"
},
{
"id": 2,
"name": "자재관리 메뉴 진입",
"description": "자재관리 > 입고관리 메뉴로 이동",
"action": "menu_navigate",
"level1": "자재관리",
"level2": "입고관리",
"expect": {
"url": "/material/receiving-management",
"visible": [
"입고 목록"
]
},
"fallback": {
"type": "navigate",
"url": "/material/receiving-management"
}
},
{
"id": 3,
"name": "페이지 구조 확인",
"description": "통계 카드와 테이블 구조 확인",
"action": "verify_detail",
"checks": [
"입고대기",
"배송중",
"검사대기",
"금일입고"
],
"expected": "통계 카드(입고대기/배송중/검사대기/금일입고) 및 테이블 컬럼(번호/발주번호/품목코드/품목명/공급업체/발주수량/입고수량/LOT번호/상태) 확인",
"verify": {
"visible": [
"입고대기",
"배송중",
"검사대기",
"금일입고"
],
"tableColumns": [
"번호",
"발주번호",
"품목코드",
"품목명",
"공급업체",
"발주수량",
"입고수량",
"LOT번호",
"상태"
]
}
},
{
"id": 4,
"name": "필수 검증 #3: 상태 탭 필터 - 입고대기",
"description": "입고대기 탭 클릭하여 필터링 확인",
"action": "click_if_exists",
"target": "입고대기",
"role": "tab",
"expect": {
"tabActive": "입고대기",
"dataFiltered": true
}
},
{
"id": 5,
"name": "필수 검증 #3: 상태 탭 필터 - 입고완료",
"description": "입고완료 탭 클릭하여 필터링 확인",
"action": "click_if_exists",
"target": "입고완료",
"role": "tab",
"expect": {
"tabActive": "입고완료",
"dataFiltered": true
}
},
{
"id": 6,
"name": "전체 탭으로 복귀",
"description": "전체 탭 클릭하여 모든 입고 표시",
"action": "click_if_exists",
"target": "전체",
"role": "tab",
"expect": {
"tabActive": "전체",
"allDataShown": true
}
},
{
"id": 7,
"name": "빈 상태 확인",
"description": "데이터가 없을 때 빈 상태 메시지 확인",
"action": "verify_element",
"target": "body",
"expected": "검색 결과가 없습니다",
"verify": {
"emptyStateVisible": "검색 결과가 없습니다"
}
},
{
"id": 8,
"name": "콘솔 에러 확인",
"action": "verify_element",
"target": "body"
},
{
"id": 9,
"name": "통계 카드 값 확인",
"description": "입고대기/배송중/검사대기/금일입고 카운트 표시 확인",
"action": "verify_elements",
"checks": [
"입고대기",
"배송중",
"검사대기",
"금일입고"
],
"verify": {
"statsCards": [
"입고대기",
"배송중",
"검사대기",
"금일입고"
],
"countsDisplayed": true
}
}
],
"assertions": [
{
"type": "url",
"expected": "/material/receiving-management",
"message": "입고관리 페이지에 머물러야 함"
},
{
"type": "elementExists",
"selector": "text=입고 목록",
"message": "입고 목록 제목이 표시되어야 함"
}
],
"mandatoryVerifications": {
"description": "E2E_TEST_CONFIG.md 기준 필수 검증 항목",
"items": [
{
"id": 3,
"name": "검색/필터",
"trigger": "상태 탭 필터",
"verification": "데이터 변화 확인",
"failCondition": "필터 적용 후 데이터 무변화"
}
]
},
"notes": {
"testScope": "입고 목록 조회 및 상태별 필터링 테스트",
"pageType": "조회 전용 (발주 기반 입고 처리)",
"statsCards": [
"입고대기",
"배송중",
"검사대기",
"금일입고"
],
"statusTabs": [
"전체",
"입고대기",
"입고완료"
],
"tableColumns": [
"번호",
"발주번호",
"품목코드",
"품목명",
"공급업체",
"발주수량",
"입고수량",
"LOT번호",
"상태"
],
"workflow": "발주 → 배송중 → 검사대기 → 입고완료",
"prerequisites": "로그인된 사용자, 발주 데이터 존재 시 입고 가능"
}
}