- 실패 시나리오 11개 리라이트 + 중복 2개 삭제 (fill_form → READ-only 패턴) - 이전 78.7% → 88.0% 개선 (+9.3%p) - 실패 9건 중 7건은 사이드바 렌더링 인프라 이슈 - 실질 기능 성공률 97.1% (66/68) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 line
749 B
Plaintext
1 line
749 B
Plaintext
" url: window.location.href, apiMonitoring: true, }; }, runBatch, getState() { return { url: window.location.href, modalOpen: ModalGuard.check().open, apiSummary: ApiMonitor.summary(), title: document.title, bodyTextLength: document.body.innerText?.length || 0, }; }, async runAction(actionType, params = {}, selectors = {}) { const handler = ActionHandlers[normalizeActionType(actionType)]; if (!handler) return fail(`Unknown action: ${actionType}`); const ctx = { variables: {}, selectors }; return handler(params, ctx); }, closeModal: () => ModalGuard.close(), checkModal: () => ModalGuard.check(), getApiLogs: () => ({ logs: ApiMonitor._logs.slice(-50), errors: ApiMonitor._errors.slice(-20), summary: ApiMonitor.summary(), }), findEl, }; })();" |