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

playwright-mcpPlaywright MCP 测试

Agent Skill

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

总安装

376

周安装

16

GitHub Stars

127

下载量

132
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/hainrixz/editor-pro-max --skill playwright-mcp

简介

playwright-mcp 用于辅助测试设计、自动化测试、用例整理和回归验证。

  • 适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。
  • 使用时需确认项目测试框架、运行命令和夹具数据,避免误改真实逻辑。
  • 涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。
  • 建议结合项目现有测试配置和运行环境进行针对性使用。

SKILL.md

Playwright MCP Browser Automation

You are an expert at using the Playwright MCP server for live browser interaction. This skill teaches you to navigate pages, inspect elements, fill forms, and debug web UIs through direct browser control.

Critical: These Are Direct Tool Calls

MCP tools are direct tool calls — exactly like Read, Grep, or Bash. They are NOT CLI commands.

CORRECT — call the tool directly:

Tool: mcp__playwright__browser_navigate
Parameters: { "url": "http://localhost:3010" }

WRONG — do NOT shell out:

Bash: claude mcp call playwright browser_navigate ...  # This does not work

All Playwright MCP tools use the mcp__playwright__ prefix.

Critical: Always Snapshot Before Interacting

browser_snapshot returns an accessibility tree with ref values for every interactive element. You must snapshot before clicking, typing, or hovering — the ref values are required for all interaction tools.

Critical: Output Size Awareness

ToolOutput SizeNotes
browser_snapshotMedium-LargeFull accessibility tree — scales with page complexity
browser_take_screenshotLargeBase64 image — use sparingly
browser_console_messagesVariableCan be very large on noisy apps
browser_network_requestsVariableCan be very large on API-heavy pages
browser_navigateSmallReturns page title only
browser_clickSmallReturns snapshot after click
browser_typeSmallReturns snapshot after typing

Prefer browser_snapshot over browser_take_screenshot for understanding page structure. Screenshots are for visual verification only.

Workflow 1: Navigate & Inspect

Trigger: User says "open this page", "what's on the page?", "inspect the UI", "check the layout"

Steps

  1. Navigate to the page: browser_navigate({url: "http://localhost:3010/home/team-slug/settings"})
  2. Get page structure (always do this before interacting): browser_snapshot → accessibility tree with ref values for all elements
  3. Analyze the snapshot: Identify interactive elements (buttons, links, inputs) by their ref values. Report page structure to user.

Decision: Snapshot vs Screenshot

NeedUse
Understand page structure, find elementsbrowser_snapshot (structured, has ref values)
Visual appearance, layout bugs, CSS issuesbrowser_take_screenshot (visual image)
Both structure and appearanceSnapshot first, then screenshot if visual check needed

Workflow 2: Form Interaction

Trigger: User says "fill out the form", "submit the login", "type in the field", "select an option"

Steps

  1. Snapshot to find form fields: browser_snapshot → identify input refs and their labels
  2. Fill fields (choose based on complexity):

- Single field: browser_type({ref: "input-ref", text: "value"}) - Multiple fields: browser_fill_form({fields: [{ref: "ref1", value: "val1"}, {ref: "ref2", value: "val2"}]}) - Dropdown: browser_select_option({ref: "select-ref", values: ["option-value"]})

  1. Submit the form: browser_click({ref: "submit-button-ref"})
  2. Verify result: browser_snapshot → check for success message, error states, or navigation

Key Patterns

  • browser_fill_form is faster than multiple browser_type calls for multi-field forms
  • Use browser_press_key({key: "Enter"}) as alternative to clicking submit
  • After submission, wait if needed: browser_wait_for({text: "Success"}) then snapshot

Workflow 3: Debug Investigation

Trigger: User says "debug the page", "check for errors", "what API calls are happening?", "why isn't it working?"

Steps

  1. Navigate to the problematic page: browser_navigate({url: "..."})
  2. Run these in parallel (they are independent): browser_console_messages → JavaScript errors, warnings, logs browser_network_requests → API calls, failed requests, status codes
  3. Snapshot the page: browser_snapshot → current UI state, error messages, loading states
  4. Investigate further: browser_evaluate({expression: "document.querySelectorAll('.error').length"}) → run custom JS

Workflow 4: Multi-Step Navigation

Trigger: User says "go through the flow", "test the signup process", "walk through the wizard"

Steps

  1. Navigate to starting page: browser_navigate({url: "..."})
  2. For each step: browser_snapshot → find the next action browser_click({ref: "..."}) or browser_type({ref: "...", text: "..."}) browser_wait_for({text: "expected content"}) → if page loads async
  3. Handle dialogs if they appear: browser_handle_dialog({accept: true}) → confirm/alert/prompt
  4. Go back if needed: browser_navigate_back

Tool Reference

Navigation

ToolPurposeParameters
browser_navigateGo to URLurl (required)
browser_navigate_backGo backNone
browser_wait_forWait for text or timetext or timeout (ms)
browser_tabsList/switch tabsNone or index to switch

Inspection

ToolPurposeParameters
browser_snapshotAccessibility tree with refsNone
browser_take_screenshotVisual screenshotNone
browser_console_messagesJS console outputNone
browser_network_requestsNetwork activityNone

Interaction

ToolPurposeParameters
browser_clickClick elementref (from snapshot)
browser_typeType textref, text
browser_fill_formFill multiple fieldsfields array of {ref, value}
browser_select_optionSelect dropdownref, values array
browser_hoverHover elementref
browser_dragDrag and dropstartRef, endRef
browser_press_keyKeyboard inputkey (e.g., "Enter", "Tab")
browser_file_uploadUpload fileref, paths array
browser_handle_dialogConfirm/dismiss dialogaccept boolean

Advanced

ToolPurposeParameters
browser_evaluateRun JavaScriptexpression
browser_resizeResize viewportwidth, height
browser_closeClose pageNone
browser_installInstall browserNone
browser_run_codeRun Playwright codecode string

Troubleshooting

"No browser running" or Connection Errors

The Playwright MCP server manages its own browser instance. If tools fail:

  1. Try browser_install to ensure the browser binary is available
  2. Try browser_navigate to a simple URL — this may initialize the browser

Elements Not Found After Navigation

Pages with async content may not have rendered yet:

  1. Use browser_wait_for({text: "expected content"}) before snapshot
  2. Use browser_wait_for({timeout: 2000}) for time-based waiting

Proxied or Internal Domains

The MCP browser cannot reach proxied or internal domains that require network tunnels. Use http://127.0.0.1:54321 directly for local Supabase.

Snapshot Returns Very Large Output

Complex pages produce large accessibility trees. If output is too large:

  1. Navigate to a specific sub-page rather than the full app
  2. Use browser_evaluate to query specific elements instead

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

展示第三方安全扫描或审计结果

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

平台分布

Codex

31.95%
按下载量换算42

Claude

30.85%
按下载量换算41

Cursor

18.73%
按下载量换算25

Gemini CLI

9.87%
按下载量换算13

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

未通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills