Files
sam-scenarios/purchase-vendor.json
김보곤 40244054fb fix: 신규 시나리오 6개 수정 (테이블 없는 페이지 + 검색 셀렉터)
- purchase-order/status/vendor: wait_for_table → wait (테이블 없는 페이지)
- accounting-tax-issue/mgmt: fill → click_if_exists (검색 input 없음)
- sales-site-mgmt: wait_for_table → wait (테이블 없는 페이지)
- material-dispatch: enabled=false (메뉴 미존재)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-01 10:59:34 +09:00

32 lines
2.8 KiB
JSON

{
"id": "purchase-vendor",
"name": "구매관리 거래처관리 테스트",
"screenshotPolicy": {
"onErrorOnly": true,
"captureOn": ["error", "fail", "timeout", "404", "500", "blocked"]
},
"description": "구매관리 > 거래처관리 메뉴의 거래처 조회/등록/검색 기능 테스트",
"baseUrl": "https://dev.codebridge-x.com",
"menuNavigation": {
"level1": "구매관리",
"level2": "거래처관리",
"expectedUrl": "/purchase/vendor",
"searchWithinParent": true,
"closeOtherMenus": true
},
"auth": { "username": "TestUser5", "password": "password123!" },
"steps": [
{ "id": 1, "name": "메뉴 진입: 구매관리 > 거래처관리", "action": "menu_navigate", "level1": "구매관리", "level2": "거래처관리", "expected": { "url_contains": "/purchase", "visible": ["거래처"] } },
{ "id": 2, "name": "페이지 로드 대기", "action": "wait", "timeout": 3000 },
{ "id": 3, "name": "필수 검증: 목업 페이지 감지", "action": "verify_not_mockup", "checks": ["거래처 목록 표시", "버튼 동작 가능"], "expected": "정상 페이지 (목업 아님)" },
{ "id": 4, "name": "콘텐츠 로드 대기", "action": "wait", "timeout": 2000 },
{ "id": 5, "name": "페이지 구조 확인", "action": "evaluate", "script": "(() => { const tables = document.querySelectorAll('table'); const lists = document.querySelectorAll('[class*=\"list\"], [class*=\"grid\"], [class*=\"card\"]'); return 'Tables: ' + tables.length + ', Lists/Cards: ' + lists.length; })()" },
{ "id": 6, "phase": "SEARCH", "name": "[SEARCH] 검색 입력", "action": "click_if_exists", "target": "input[type='search'], input[placeholder*='검색'], input[type='text']", "expected": "검색 필드 존재 확인" },
{ "id": 8, "name": "등록 버튼 확인", "action": "evaluate", "script": "(() => { const btn = Array.from(document.querySelectorAll('button')).find(b => ['등록','신규','추가'].some(t => b.innerText?.includes(t))); return btn ? 'Create button: ' + btn.innerText.trim() : 'No create button (ok)'; })()" },
{ "id": 9, "name": "상세 행 클릭", "action": "click_if_exists", "target": "table tbody tr:first-child", "expected": { "detail_view": true } },
{ "id": 10, "name": "상세 정보 확인", "action": "verify_detail", "checks": ["거래처 상세 정보 표시 또는 데이터 없음"], "expected": "상세 정보 표시" },
{ "id": 11, "name": "목록으로 돌아가기", "action": "click_if_exists", "target": "button:has-text('목록'), a:has-text('목록'), [class*='back']", "expected": "목록 페이지로 복귀" },
{ "id": 12, "name": "콘솔 에러 확인", "action": "verify_element", "target": "body" }
],
"rollbackPlan": { "note": "조회 위주 테스트로 데이터 변경 최소" }
}