chrome-mcp-testing — for Claude Code chrome-mcp-testing, whos-next, community, for Claude Code, ide skills, mcp_io_github_chr, mcp_io_github_chr_fill, mcp_io_github_chr_click, take_snapshot, mcp_io_github_chr_evaluate_script

v1.0.0

Об этом навыке

Подходящий сценарий: Ideal for AI agents that need chrome mcp testing. Локализованное описание: # Chrome MCP Testing Use this skill when running browser tests with Chrome MCP tools. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Возможности

Chrome MCP Testing
Use this skill when running browser tests with Chrome MCP tools.
End-to-end verification of frontend flows
Fast repro of UI bugs in local dev
Regression checks around authentication and core user journeys

# Core Topics

JulianCissen JulianCissen
[0]
[0]
Updated: 4/19/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 10/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
10/11
Quality Score
55
Canonical Locale
en
Detected Body Locale
en

Подходящий сценарий: Ideal for AI agents that need chrome mcp testing. Локализованное описание: # Chrome MCP Testing Use this skill when running browser tests with Chrome MCP tools. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Зачем использовать этот навык

Рекомендация: chrome-mcp-testing helps agents chrome mcp testing. Chrome MCP Testing Use this skill when running browser tests with Chrome MCP tools. This AI agent skill supports Claude Code, Cursor, and Windsurf

Подходит лучше всего

Подходящий сценарий: Ideal for AI agents that need chrome mcp testing.

Реализуемые кейсы использования for chrome-mcp-testing

Сценарий использования: Applying Chrome MCP Testing
Сценарий использования: Applying Use this skill when running browser tests with Chrome MCP tools
Сценарий использования: Applying End-to-end verification of frontend flows

! Безопасность и ограничения

  • Ограничение: Useful fallbacks (evaluate script only — for reading state, not for input):
  • Ограничение: Requires repository-specific context from the skill documentation
  • Ограничение: Works best when the underlying tools and dependencies are already configured

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is chrome-mcp-testing?

Подходящий сценарий: Ideal for AI agents that need chrome mcp testing. Локализованное описание: # Chrome MCP Testing Use this skill when running browser tests with Chrome MCP tools. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

How do I install chrome-mcp-testing?

Run the command: npx killer-skills add JulianCissen/whos-next. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for chrome-mcp-testing?

Key use cases include: Сценарий использования: Applying Chrome MCP Testing, Сценарий использования: Applying Use this skill when running browser tests with Chrome MCP tools, Сценарий использования: Applying End-to-end verification of frontend flows.

Which IDEs are compatible with chrome-mcp-testing?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for chrome-mcp-testing?

Ограничение: Useful fallbacks (evaluate script only — for reading state, not for input):. Ограничение: Requires repository-specific context from the skill documentation. Ограничение: Works best when the underlying tools and dependencies are already configured.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add JulianCissen/whos-next. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use chrome-mcp-testing immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

chrome-mcp-testing

# Chrome MCP Testing Use this skill when running browser tests with Chrome MCP tools. This AI agent skill supports Claude Code, Cursor, and Windsurf

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Chrome MCP Testing

Use this skill when running browser tests with Chrome MCP tools.

When to Apply

  • End-to-end verification of frontend flows
  • Fast repro of UI bugs in local dev
  • Regression checks around authentication and core user journeys

Preferred Tooling

Use Chrome MCP browser tools with the mcp_io_github_chr prefix for navigation, script evaluation, and interaction.

Interaction Priority Order

  1. mcp_io_github_chr_fill (uid) — most reliable for Angular inputs. Always triggers Angular's change detection correctly and enables bound send/submit buttons.
  2. mcp_io_github_chr_click (uid) — most reliable for buttons and interactive elements. Use take_snapshot first to discover stable uids.
  3. mcp_io_github_chr_evaluate_script — use for reading state, waiting, combining multiple steps, or actions where uid tools are insufficient. Do NOT use for setting Angular input values — new Event('input', { bubbles: true }) does not reliably trigger Angular change detection and leaves send/submit buttons disabled.

Get uids via take_snapshot before any click or fill:

javascript
1// 1. Snapshot to discover uids 2await mcp_io_github_chr_take_snapshot(); 3// 2. Fill input by uid 4await mcp_io_github_chr_fill({ uid: '3_8', value: 'my answer' }); 5// 3. Click button by uid 6await mcp_io_github_chr_click({ uid: '3_9' });

Test Setup

  1. Navigate to the app root (e.g. http://localhost:4200).
  2. Navigate to the login route and select the desired dev user.
  3. Wait explicitly after navigation or login for the app shell to settle before assertions.
  4. Use take_snapshot after each navigation to get fresh uids before interacting.

Login example:

javascript
1await mcp_io_github_chr_navigate_page({ type: 'url', url: 'http://localhost:4200/login' }); 2await mcp_io_github_chr_take_snapshot(); 3// Find the dev user button uid in the snapshot, then click it 4await mcp_io_github_chr_click({ uid: '<dev-user-button-uid>' }); 5await mcp_io_github_chr_evaluate_script({ 6 function: () => new Promise(resolve => setTimeout(() => resolve(window.location.href), 2000)) 7});

Reliable Selectors and DOM Patterns

  • Dev-auth user buttons are rendered as buttons in the snapshot — use uid-based click after snapshot.
  • Material input controls: uid-stable in snapshot, including current value state. Inspect snapshot to verify current value after interactions.
  • Elements with stable aria-label attributes can be targeted via evaluate_script as a fallback for reading state.

After every navigation or significant DOM change, call take_snapshot to refresh uids before further interactions.

Useful fallbacks (evaluate_script only — for reading state, not for input):

javascript
1const pageText = document.body.innerText; 2const section = document.querySelector('[aria-label*="your label"]'); 3const text = section ? section.innerText.slice(-400) : '';

Optimization Guidelines

  • Prefer uid-based click/fill over all other interaction methods.
  • Call take_snapshot before every significant interaction to ensure uids are fresh.
  • Use evaluate_script only for read operations (page text, current URL), waits, or actions that genuinely require scripting.
  • When debugging odd behavior, stop at the first unexpected outcome and record the exact action plus observed state before continuing.

Fast Failure Reporting Template

When you detect unexpected behavior, report:

  • Step number in journey
  • Action performed (navigation, fill value, click target)
  • Response or state change observed
  • Expected vs. actual result
  • Whether the issue appears interaction-related, state-sync-related, or rendering-only

End-to-End Smoke Script Pattern

javascript
1// 1. Login 2await mcp_io_github_chr_navigate_page({ type: 'url', url: 'http://localhost:4200/login' }); 3await mcp_io_github_chr_take_snapshot(); 4// Find dev user button uid from snapshot, then: 5await mcp_io_github_chr_click({ uid: '<dev-user-button-uid>' }); 6await mcp_io_github_chr_evaluate_script({ 7 function: () => new Promise(r => setTimeout(() => r(window.location.href), 2000)) 8}); 9 10// 2. Navigate to target page 11await mcp_io_github_chr_navigate_page({ type: 'url', url: 'http://localhost:4200/<your-route>' }); 12await mcp_io_github_chr_take_snapshot(); 13 14// 3. Interact (fill inputs, click buttons) 15await mcp_io_github_chr_fill({ uid: '<input-uid>', value: 'my value' }); 16await mcp_io_github_chr_click({ uid: '<button-uid>' }); 17await mcp_io_github_chr_evaluate_script({ 18 function: () => new Promise(r => setTimeout(() => r(window.location.href), 2000)) 19}); 20 21// 4. Read and assert state 22await mcp_io_github_chr_evaluate_script({ 23 function: () => document.body.innerText.slice(-400) 24});

Связанные навыки

Looking for an alternative to chrome-mcp-testing or another community skill for your workflow? Explore these related open-source skills.

Показать все

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

widget-generator

Logo of f
f

Создание настраиваемых плагинов виджетов для системы ленты новостей prompts.chat

flags

Logo of vercel
vercel

Фреймворк React

138.4k
0
Браузер

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Разработчик