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

@@ -30,16 +30,21 @@
"steps": [
{
"step": 0,
"name": "사이드바 초기화",
"description": "메뉴 탐색 전 사이드바를 최상단으로 스크롤",
"name": "사이드바 메뉴 전체 펼치기",
"description": "모두 펼치기 버튼을 클릭하여 전체 메뉴를 펼친 후 메뉴 탐색 준비",
"actions": [
{
"type": "evaluate",
"script": "document.querySelector('.sidebar-scroll, [data-sidebar=\"content\"], nav')?.scrollTo({top: 0, behavior: 'instant'})"
},
{ "type": "wait", "duration": 300 },
{
"type": "evaluate",
"script": "Array.from(document.querySelectorAll('button')).find(b => b.innerText?.includes('모두 펼치기'))?.click()"
},
{
"type": "wait",
"duration": 500
"duration": 2000
}
]
},