Files
sam-scenarios/settings-position.json
김보곤 617ade80b3 feat: 설정 메뉴 시나리오 6개 추가
- 계좌관리 (settings-bank-account)
- 직책관리 (settings-position)
- 근태설정 (settings-attendance)
- 휴가정책 (settings-vacation-policy)
- 근무일정 (settings-work-schedule)
- 알림설정 (settings-notification)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-03 08:59:26 +09:00

70 lines
1.7 KiB
JSON

{
"id": "settings-position",
"name": "직책관리 테스트",
"screenshotPolicy": {
"onErrorOnly": true,
"captureOn": ["error", "fail", "timeout", "404", "500", "blocked"]
},
"description": "설정 > 직책관리 메뉴의 직책 설정 기능 테스트",
"baseUrl": "https://dev.codebridge-x.com",
"menuNavigation": {
"level1": "설정",
"level2": "직책관리",
"expectedUrl": "/settings/positions"
},
"auth": {
"username": "TestUser5",
"password": "password123!"
},
"steps": [
{
"id": 1,
"name": "메뉴 진입: 설정 > 직책관리",
"action": "menu_navigate",
"level1": "설정",
"level2": "직책관리",
"expected": {
"url_contains": "/settings/positions",
"visible": ["직책관리", "직책"]
}
},
{
"id": 2,
"name": "필수 검증 #5: 목업 페이지 감지",
"action": "verify_not_mockup",
"checks": [
"직책 목록 표시",
"직책 추가 가능"
],
"expected": "정상 페이지 (목업 아님)"
},
{
"id": 3,
"name": "직책 목록 확인",
"action": "verify_table",
"checks": [
"직책명 컬럼",
"순서 컬럼"
],
"expected": "직책 목록 표시"
},
{
"id": 4,
"name": "직책 추가 버튼 확인",
"action": "verify_elements",
"checks": [
"직책 추가 버튼 존재"
],
"expected": "추가 버튼 표시"
}
],
"requiredVerifications": [
{
"id": 5,
"name": "목업 페이지 감지",
"steps": [2],
"criteria": "직책 목록, 추가 기능 확인"
}
]
}