Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计未展示

dyad%3adebug-with-playwrightdyad 3adebug with Playwright 搜索

Agent Skill

用于辅助测试设计、自动化测试、用例整理和回归验证。它适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑;涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。

总安装

546

周安装

23

GitHub Stars

20,188

下载量

191
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:dyad%3adebug-with-playwright(dyad 3adebug with Playwright 搜索)
来源仓库:https://github.com/dyad-sh/dyad
仓库路径:skills/dyad%3Adebug-with-playwright
安装命令:
npx skills add https://github.com/dyad-sh/dyad --skill dyad:debug-with-playwright
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/dyad-sh/dyad --skill dyad:debug-with-playwright

简介

dyad:debug-with-playwright 通过关键节点截图调试 E2E 测试,可视化检查应用状态。

  • 适用于 Electron + Playwright 测试环境,解决内置截图功能不兼容问题。
  • 支持指定测试文件或全局调试,利用 fixtures 和 helpers 提供测试上下文。
  • 使用前需确认测试框架配置和截图存储路径,注意可能涉及浏览器实例操作。
  • dyad%3adebug-with-playwright 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Debug with Playwright Screenshots

Debug E2E tests by taking screenshots at key points to visually inspect application state.

Arguments

  • $ARGUMENTS: (Optional) Specific E2E test file to debug (e.g., main.spec.ts or e2e-tests/main.spec.ts). If not provided, will ask the user which test to debug.

Background

Dyad uses Electron + Playwright for E2E tests. Because Playwright's built-in screenshot: "on" option does NOT work with Electron (see https://github.com/microsoft/playwright/issues/8208), you must take screenshots manually via page.screenshot().

The test fixtures in e2e-tests/helpers/fixtures.ts already auto-capture a screenshot on test failure and attach it to the test report. But for debugging, you often need screenshots at specific points during test execution.

Instructions

  1. Identify the test to debug: If $ARGUMENTS is empty, ask the user which test file they want to debug.

- If provided without the e2e-tests/ prefix, add it - If provided without the .spec.ts suffix, add it

  1. Read the test file: Read the test file to understand what it does and where it might be failing.
  2. Add debug screenshots to the test: Add page.screenshot() calls at key points in the test to capture visual state. Access the page from the po fixture: ` // Get the page from the electronApp fixture const page = await electronApp.firstWindow(); // Or if you only have po, access the page directly: // po is a PageObject which has a page property **Screenshot patterns for debugging:** import * as fs from "fs"; import * as path from "path"; // Create a debug screenshots directory const debugDir = path.join(__dirname, "debug-screenshots"); if (!fs.existsSync(debugDir)) {fs.mkdirSync(debugDir, {recursive: true});} // Take a full-page screenshot await page.screenshot({path: path.join(debugDir, "01-before-action.png"),}); // Take a screenshot of a specific element const element = page.locator('[data-testid="chat-input"]'); await element.screenshot({path: path.join(debugDir, "02-chat-input.png"),}); // Take a screenshot after some action await po.sendPrompt("hi"); await page.screenshot({path: path.join(debugDir, "03-after-send.png"),}); **Important:** The test fixture signature provides {electronApp, po}`. To get the page: Add screenshots before and after the failing step to understand what the UI looks like at that point.

- Use await electronApp.firstWindow() to get the page - Or use po.page if PageObject exposes it

  1. Build the app (if needed): E2E tests run against the built binary. If you made any application code changes: npm run build If you only changed test files, you can skip this step.
  2. Run the test: PLAYWRIGHT_RETRIES=0 PLAYWRIGHT_HTML_OPEN=never npm run e2e -- e2e-tests/<testfile>.spec.ts
  3. View the screenshots: Use the Read tool to view the captured PNG screenshots. Claude Code can read and display images directly: Read the PNG files in e2e-tests/debug-screenshots/ Analyze the screenshots to understand:

- Is the expected UI element visible? - Is there an error dialog or unexpected state? - Is a loading spinner still showing? - Is the layout correct?

  1. Check the Playwright trace (for additional context): The Playwright config has trace: "retain-on-failure". If the test failed, a trace file will be in test-results/. You can reference this for additional debugging context.
  2. Iterate: Based on what you see in the screenshots:

- Add more targeted screenshots if needed - Fix the issue in the test or application code - Re-run to verify

  1. Clean up: After debugging is complete, remove the debug screenshots and any temporary screenshot code you added to the test: rm -rf e2e-tests/debug-screenshots/ Remove any page.screenshot() calls you added for debugging purposes.
  2. Report findings: Tell the user:

- What the screenshots revealed about the test failure - What fix was applied (if any) - Whether the test now passes

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.09%
按下载量换算67

Claude

31.43%
按下载量换算60

Cursor

17.49%
按下载量换算33

Gemini CLI

9.59%
按下载量换算18

安全审计

暂无安全审计结果可展示。

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills