frontend-testing-debugging

作者: openai

在通过构建网页应用或网页开发插件测试、调试或针对性改进渲染后的前端应用时使用:本地开发服务器、用户界面…

npx skills add https://github.com/openai/plugins --skill frontend-testing-debugging

Frontend Testing Debugging

Invocation Contract

This skill should work from normal user prompts. Do not require the user to spell out Browser routing, screenshots, report shape, or fallback policy.

Use this skill when the user asks to use the Build Web Apps plugin, web dev plugin, frontend dev plugin, or frontend testing/debugging skill for a rendered frontend change, test, or bug investigation.

Examples that should trigger this full workflow:

  • please make an improvement to the web dashboard transaction search area and use the web dev plugin
  • use the frontend dev plugin to polish this dashboard
  • debug this UI with the Build Web Apps plugin
  • test this localhost app and fix the broken interaction

From a brief prompt, infer the target surface from the repo, currently open app/browser URL, nearby files, or running dev server. If the target URL is unclear, inspect the repo scripts and running local ports before asking the user.

For any code change to a rendered frontend surface, do the validation loop by default:

  1. Identify the target flow.
  2. Choose the Browser path below.
  3. Make the smallest useful edit.
  4. Validate the rendered behavior.
  5. Reply with the QA final response report.

Choose The Browser Path

First classify Browser availability:

  • Available: the Browser plugin and its browser skill are listed in the session. Read and follow that skill before any browser action.
  • Absent: the Browser plugin or browser skill is not listed. Use regular Playwright and record Browser plugin not available.
  • Invocation failed: Browser appears available, but the skill/runtime, Node REPL JavaScript setup, tab acquisition, or navigation fails. Treat this as a Browser-path blocker.

Do not use regular Playwright, external Chrome, or shell open first when Browser is available.

Only switch from a failed Browser invocation to regular Playwright if the user already allowed fallback or the task explicitly permits non-Browser validation. In that case, report the exact Browser failure and the fallback decision.

Target Flow

Before browser validation, define the target flow in one sentence:

The flow under test is: [entry route] -> [user action or state] -> [expected rendered result].

If the user asked for general smoke testing, use:

The flow under test is: app loads -> first meaningful screen renders -> primary visible controls respond without runtime errors.

Browser Plugin Loop

Run Browser commands through the Node REPL JavaScript tool described by the Browser skill. Do not invent a separate browser setup path. Keep using the same tab binding unless the Browser skill says otherwise.

Required sequence:

  1. Load the Browser runtime exactly as the Browser skill instructs.
  2. Name the session with agent.browser.nameSession("...").
  3. Acquire a tab with agent.browser.tabs.selected() or agent.browser.tabs.new().
  4. Navigate with tab.goto(url).
  5. Run the required checks below.
  6. Interact with scoped tab.playwright locators or Browser skill interaction APIs.
  7. After edits, call await tab.reload(), then repeat the checks and the failing interaction.

For each UI-changing action, collect the cheapest proof that the next state is correct: fresh DOM snapshot, visible text/state, URL change, focused control, toast, modal, screenshot, or console log.

Required Browser Checks

Run these checks before claiming the rendered app works:

  1. Page identity: await tab.url() and await tab.title() match the intended page.
  2. Not blank: await tab.playwright.domSnapshot() contains meaningful app content, not an empty shell.
  3. No framework overlay: the snapshot or screenshot does not show a Next.js, Vite, Webpack, or framework error overlay.
  4. Console health: await tab.dev.logs({ levels: ["error", "warn"], limit: 50 }) has no relevant app errors, or each relevant error is explained.
  5. Screenshot evidence: await display(await tab.playwright.screenshot({ fullPage: false })) supports visual claims.
  6. Interaction proof: at least one target-flow interaction is exercised and followed by a state check.

For visual work, add desktop plus one mobile-sized viewport when practical. For reference-driven work, keep a short mismatch ledger: reference evidence, rendered evidence, fix or intentional deviation.

Playwright Loop

Use this branch when Browser is not available, or when the user has allowed fallback after a Browser invocation failure.

Use this order:

  1. Find scripts in package.json.
  2. Start the app with the repo's package manager and keep the requested host exact.
  3. Prefer the repo's e2e script if present.
  4. Otherwise run pnpm exec playwright test or the package-manager equivalent when Playwright is configured.
  5. If there is no project Playwright workflow, verify Playwright with pnpm exec playwright --version, then capture a screenshot with pnpm exec playwright screenshot <url> /tmp/frontend-check.png.
  6. For deeper debugging, create a small temporary Playwright script outside committed source that opens the URL, captures console errors, screenshots, and runs the target interaction.
  7. After edits, rerun the same command or script.

Do not install new browser dependencies unless the task requires it and the user has allowed dependency changes.

Validation Checklist

  • Keep the requested host exact.
  • Verify controls update real UI state.
  • Check the first viewport before scrolling, plus desktop and one mobile-sized viewport when practical.
  • Look for clipping, overlap, unreadable text, wrapping, layout shift, missing assets, z-index issues, scroll traps, stale loading, and broken states.
  • For reference-driven work, compare the rendered screenshot against the reference and keep a short mismatch ledger.
  • A passing build is not enough when rendered validation was requested.

QA Final Response Report

For any non-trivial rendered UI validation run, write the final response like a QA engineer verifying a code change. The response should make it easy for the user or PR reviewer to understand what changed, what was tested, what evidence proves it, and what remains untested.

Use this shape:

  • Summary: one or two bullets explaining the user-visible change and whether QA passed.
  • Environment: URL, viewport(s), Browser availability classification, and fallback reason if Playwright was used.
  • Changes Verified: files or surfaces changed, plus the specific user-facing behavior expected.
  • Checks: a pass/fail table for page identity, blank-page check, framework overlay check, console health, screenshot evidence, and interaction proof.
  • Interaction Loop: exact interaction path tested, including the control or workflow exercised and the observed state change.
  • Evidence: describe the screenshot evidence in the QA sections, then place the actual screenshots together at the end of the response as consecutive images. Include as many screenshots as are useful to prove the relevant before, after, interaction, responsive, error, or fixed states.
  • Commands / Browser APIs: list the key command and Browser API sequence used, without dumping noisy logs.
  • Remaining Risk: untested viewports, flows, browsers, data states, or known limitations.

If issues were found, lead with Findings before the summary. Each finding should include what the user sees, reproduction steps, screenshot/DOM/console evidence, likely owner or file when known, and the fix made or remaining blocker.

When using Browser screenshots that should be shown to the user, emit or display the screenshot through the Browser runtime so it can be referenced in chat. When using Playwright screenshots, save them outside the repo and reference them in chat. Include multiple screenshots when they help verify distinct states or flows.

Do not interleave screenshots throughout the written report. Put a short Screenshots section at the very end, and make it a consecutive image gallery with one image per line. Add short labels only when they clarify the state, for example Before, After, Filtered results, Empty state, or Mobile.

Do not create separate HTML reports by default. Only create a standalone report file when the user explicitly asks for one, and write it outside the repo unless the user explicitly asks for committed artifacts.

Do not write reports, screenshots, traces, or temporary scripts into the repo unless the user explicitly asks for committed artifacts.

Related Skills

  • Use frontend-app-builder when the task is design creation, redesign, or fidelity to an accepted concept.
  • Use react-best-practices after meaningful React/Next.js component edits.
  • Do not invoke Image Gen for ordinary debugging. Use it only when the task requires creating or revising visual assets, or when frontend-app-builder is already driving a concept-to-implementation fidelity loop.

Final Response

Use the QA final response report format above. Keep it concise, but include enough concrete evidence that a PR reviewer can trust the validation without rerunning it immediately.

If Browser was absent and Playwright was used, end by suggesting that the user install the Browser plugin for a better frontend development experience with in-app navigation, screenshots, DOM snapshots, console logs, and interaction validation.

来自 openai 的更多技能

user-context
openai
加载或管理数据分析插件的持久化源路由偏好、引导逻辑、设置进度及语义层注册表。
official
notion-research-documentation
openai
研究Notion内容,并将其综合成带有引用的结构化简报、报告或对比。通过定向查询搜索并获取Notion页面,然后按主题组织发现,附带内联来源引用和参考文献部分。根据范围和用户目标,从四种输出格式(快速简报、研究摘要、对比、综合报告)中选择。使用内置模板创建和更新Notion页面;直接链接来源,并在新信息到达时跟踪变更...
official
rcsb-pdb-skill
openai
提交紧凑的RCSB PDB请求以获取核心元数据、Search API查询和FASTA下载。当用户需要简洁的RCSB摘要时使用;保存原始JSON或…
official
pdf
openai
PDF的读取、创建与验证,支持可视化渲染与程序化生成。使用Poppler(pdftoppm)将PDF页面渲染为PNG,以便在交付前直观检查布局、间距与排版;通过reportlab程序化生成PDF,确保格式可靠;利用pdfplumber或pypdf提取文本与元数据。执行质量标准:无文本裁剪、元素重叠、表格损坏或渲染伪影;仅使用ASCII连字符,引用内容需可读。使用...
official
test-coverage-improver
openai
改进OpenAI Agents JS mon
official
playwright
openai
基于终端驱动的浏览器自动化,支持元素快照与交互式UI工作流。通过playwright-cli包装脚本运行(需npx),支持无头模式与有头模式进行可视化调试。核心工作流:打开页面、获取快照以稳定元素引用、使用引用进行交互、在导航或DOM变更后重新快照。包含表单填写、点击、输入、多标签页管理、截图/PDF捕获及用于流程调试的追踪记录。元素引用(如e3、e15)...
official
ukb-topmed-phewas-skill
openai
通过接受rsID、GRCh37或GRCh38输入并解析为所需的GRCh38查询,获取单个变体的紧凑型UKB-TOPMed PheWAS摘要。当需要…时使用。
official
code-review-context
openai
模型可见上下文
official