browser_visible

Configure browser sessions with headed or private Playwright modes.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/9999-12-31/Dr.Claw --skill browser-visible-9999-12-31
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: browser_visible
Source: https://github.com/9999-12-31/Dr.Claw/tree/main/src/qwenpaw/agents/skills/browser_visible-en
Command: npx skills add https://github.com/9999-12-31/Dr.Claw --skill browser-visible-9999-12-31

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Control over browser launch behavior during automated tasks, enabling you to choose whether the browser window is visible and whether CDP is used or Playwright is managing the session.

Core Features & Use Cases

  • Default to managed CDP for typical automation.
  • Independent parameters: headed to show/hide the window and private_mode to switch to Playwright management.
  • Use Case: run tests that require a visible browser during UI checks, or run in private mode for isolation without CDP.

Quick Start

Start the browser with headed mode by calling the start action with headed set to true.

Frequently Asked Questions about browser_visible

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I launch a visible browser window for Playwright UI testing?

To launch a visible browser window, set the headed parameter to true when calling the start command. This opens a visible browser session configured for UI testing and automated browsing tasks via Playwright.

Can I run Playwright automated browsing in private mode without CDP?

Yes, you can run automated browsing in private mode by enabling the private_mode parameter. This switches session management entirely to Playwright, bypassing the default CDP connection for isolated browsing.

What is the default launch mode for automated browser sessions?

The default launch mode for automated browser sessions uses managed CDP. This configuration applies to typical automation tasks unless you explicitly override it by enabling private_mode for Playwright management.

How do I control browser visibility and launch mode independently?

You control browser visibility and launch mode using independent parameters: headed toggles window visibility, while private_mode switches between managed CDP and Playwright session control.

Does browser automation with CDP support headless execution?

Yes, browser automation with CDP supports headless execution by setting the headed parameter to false. This hides the browser window while maintaining default managed CDP control for your automated tasks.