What problem does it solve? Playwright and the page-level CDP session can drive the web page under test, but neither can operate the Chrome DevTools UI itself — switching panels, clearing the network log, or selecting rows in the cookie tree. This Skill connects to the DevTools front end as its own CDP target and scripts its shadow-DOM-based UI directly. ## Core Features & Use Cases - Panel and Command Menu automation: Switch to any DevTools panel (Network, Application, Elements, Console) by clicking its tab or routing through the Command Menu when the tab is hidden in the overflow. - Shadow-DOM-aware interaction: Deep-query elements across nested shadow roots, dispatch real mouse and rawKeyDown input events, and poll predicates instead of fixed sleeps. - Recipes and screenshots: Clear the network log, select a site's cookie table in the Application panel, and capture PNG screenshots of the DevTools UI via Page.captureScreenshot. - Use Case: While debugging a web app, you need a screenshot of the Network panel with a clean log. Connect to the DevTools target, run Select-DevToolsPanel tab-network, Clear-NetworkLog, then Save-DevToolsScreenshot to produce the image. ## Quick Start Launch Chrome with --remote-debugging-port=9333 and --auto-open-devtools-for-tabs, then ask the assistant to connect to the DevTools window for your page and open the Network panel.