fix: 시나리오 URL 및 메뉴 존재 여부 수정

- announcement-board.json 삭제 (공지사항 메뉴 미존재)
- bank-account-management.json URL 수정: /settings/bank-account → /settings/accounts
- company-info.json URL 수정: /settings/company → /company-info

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
light
2026-01-30 16:26:52 +09:00
parent af9a126a94
commit 8580c891eb
56 changed files with 490 additions and 403 deletions

View File

@@ -33,16 +33,17 @@
"steps": [
{
"id": 0,
"name": "사이드바 메뉴 탐색 준비",
"description": "사이드바를 최상단으로 스크롤하고 메뉴 구조 파악",
"name": "사이드바 메뉴 전체 펼치기",
"description": "모두 펼치기 버튼을 클릭하여 전체 메뉴를 펼친 후 메뉴 탐색 준비",
"actions": [
{ "type": "scroll", "target": "sidebar", "direction": "top", "description": "사이드바 최상단으로 스크롤" },
{ "type": "wait", "duration": 500 },
{ "type": "screenshot", "name": "sidebar_initial_state" }
{ "type": "wait", "duration": 300 },
{ "type": "evaluate", "script": "Array.from(document.querySelectorAll('button')).find(b => b.innerText?.includes('모두 펼치기'))?.click()" },
{ "type": "wait", "duration": 2000 }
],
"verification": [
"사이드바가 화면에 보이는지 확인",
"메뉴 항목들이 렌더링되었는지 확인"
"모든 메뉴가 펼쳐졌는지 확인"
]
},
{