DSH-BrowserUse: A browser-use Style Browser Automation Plugin for DeepSeek Harness
`dsh-browseruse` is a browser automation plugin for DeepSeek Harness (DSH), implemented purely in JavaScript with no build step required. It drives a standalone Google Chrome instance via `playwright-core`, enabling operations such as opening web pages, reading content, clicking, inputting text, scrolling, and switching between tabs, while supporting autonomous decision-making based on page state during multi-step tasks. Core features include: 11 fine-grained `browser_*` tools; `browser_task` for natural language autonomous tasks (default maximum of 30 steps); `browser_schedule` for scheduled tasks within the current session; a user confirmation mechanism before sensitive operations (e.g., payments, deletions); manual takeover during CAPTCHA detection; and an independent Pr
Read Moredsh-browser-playwright: A Playwright-Based Browser Plugin for DeepSeek Harness
dsh-browser-playwright is an MIT-licensed browser plugin designed for DeepSeek Harness, aimed at addressing issues such as CSS selector mismatches or oversized DOM contexts in traditional solutions. By leveraging Playwright to drive a real browser, the plugin utilizes accessibility snapshots and stable element references (ref) to constrain the model's interaction interface, avoiding direct selector guessing or outputting the complete DOM. Its core features include support for tab management, screenshots, structured extraction, and controlled JavaScript execution, along with 17 tool interfaces prefixed with `browser_`. The plugin can automatically detect browser channels such as Chromium and Chrome, and supports restricting navigation domains.
Read MoreDSH-Browser: A Playwright Browser Automation Plugin for DeepSeek Harness
dsh-browser is a Playwright-based browser automation plugin for DeepSeek Harness, designed to enable Agents to directly drive real web pages. It provides tools such as `browser_open`, `click`, `type`, `screenshot`, and `eval`, supporting page navigation, form interaction, JavaScript execution, content reading, and screenshot review. Browser state is maintained across tool calls, and it runs in headless mode by default. Installation requires `playwright-core` and a Chromium-based browser (it automatically attempts to use chromium/chrome/msedge; if missing, you can run `npx playwri
Read Moredsh-browser: A Self-Contained Browser Runtime for DSH
@anweat/dsh-browser is a networking tool plugin for DeepSeek Harness, which packages Playwright (Chromium) and OpenCLI as local dependencies for the plugin. It exposes browser services and up to 21 interactive browser tools externally. dsh-web-search-pro can inject this service through "inject," eliminating the reliance on a global CLI. The plugin supports page read/write, Recipe automation, limited crawling, OpenCLI platform adaptation, and experimental reusable assets. It also implements layered control for approval and resource throttling through automationMode and usagePolicy. This article introduces installation commands, typical usage, and applicable boundaries.
Read Moredsh-playwright-browser: Providing Playwright Multi-tab Browser Automation for DSH Agents
dsh-playwright-browser is a DSH networking tool plugin maintained by Clizo1209, based on Playwright, which registers ten browser_* tools for intelligent agents. It supports multi-tab, semantic positioning, bounded snapshots, and screenshots. The article covers installation commands, cordis.patch.yml configuration, typical invocation flow, and security considerations. The plugin runs with DSH process permissions; please verify the source code and MIT license before installation.
Read MoreConnect Playwright Browsers to DeepSeek Harness with dsh-playwright-browser
dsh-playwright-browser is a community plugin for DeepSeek Harness maintained by Clizo1209. It provides 10 browser_* tools, semantic positioning and multi-tab control for agents via Playwright. This article verifies the installation commands, configuration items and security boundaries against the directory page, GitHub README and npm version 0.1.3: no page eval is provided, and the plugin runs with the permissions of the current dsh process.
Read MoreUse recording-browser-flow-as-test: Walk through the process in the browser and automatically generate Playwright tests
# Introduction to `recording-browser-flow-as-test` in spencerpauly/awesome-cursor-skills: This tool allows users to walk through user workflows step-by-step using Cursor's built-in browser, record accessibility tree information via `browser_snapshot`, and then generate Playwright tests that use stable locators such as `getByRole` and `getByLabel`. This article verifies the installation commands, prerequisites, recording steps, assertion and hardening suggestions, as well as inapplicable scenarios such as 2FA and verification codes.
Read More`playwright-interactive: Using Persistent JS_REPL for UI Iteration and Debugging`
# Introduction to OpenAI's Featured Skill: playwright-interactive This skill enables persistent handling of Playwright/Electron via js_repl, allowing rapid iterative UI debugging on local web and Electron applications. It also supports completing QA checklists, functional validation, visual QA and viewport adaptation following official workflows. This article details the installation steps, pre-configuration requirements, typical code snippets, as well as notes such as the possible removal of js_repl in the current Codex, and makes a comparison with the CLI-oriented Playwright Skill.
Read MoreAdding E2E Tests: Building Playwright End-to-End Tests from Scratch with Agent Skill
### 正式翻译: # Adding E2E Tests from awesome-cursor-skills: Teach AI Agents to Build Playwright E2E Testing from Scratch This tutorial covers end-to-end setup with Playwright: installing dependencies, configuring `playwright.config.ts`, writing smoke tests and Page Objects, supplementing npm scripts and `.gitignore`, integrating GitHub Actions CI, and emphasizes best practices for `data-testid` and Playwright Codegen. It explains the positioning of this skill, its differences from webapp-testing, installation methods for Cursor/Claude Code, and a seven-step implementation workflow, making it suitable for frontend and full-stack projects that have not yet adopted E2E testing.
Read MoreDrive Real Browsers via Terminal: Getting Started with OpenAI's Official Playwright Skill
OpenAI's featured Skill "playwright" wraps the Playwright Agent CLI into a terminal browser automation workflow: opening pages, taking snapshots to obtain element references, filling forms and clicking, taking screenshots, and debugging with Trace. Verified based on the official SKILL.md, this article introduces the installation methods (Codex skill-installer, Cursor .cursor/skills), the usage of the wrapper script, typical command examples, as well as precautions such as re-snapshotting when refs fail and not writing @playwright/test by default. It is suitable for E2E exploratory automation and UI process troubleshooting scenarios.
Read More# webapp-testing: Let AI Agents Autonomously Validate Local Web Applications with Playwright
Anthropic's official webapp-testing Skill wraps Playwright browser automation into reusable, agent-friendly test workflows. It supports starting local dev servers, taking screenshots to inspect DOM, and capturing console logs, and validates dynamic single-page applications following a "inspect first, then operate" pattern. This article introduces its core capabilities, installation methods in Cursor and Claude Code, as well as the multi-server management with `with_server.py` and typical Playwright script examples, to help developers enable AI to independently run UI regression tests after modifying front-end code.
Read More