edge

Connects to a running Edge session via CDP to automate browser tasks.

7|1|Updated Mar 30, 2024
One-click install
npx skills add https://github.com/Lionad-Morotar/simple-local-llm-server --skill edge
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: edge
Source: https://github.com/Lionad-Morotar/simple-local-llm-server/tree/main/local-link/skills/edge
Command: npx skills add https://github.com/Lionad-Morotar/simple-local-llm-server --skill edge

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Connects to an existing Edge browser session via CDP to automate tasks using the current login state.

Core Features & Use Cases

  • Connects to an existing Edge session via CDP to leverage cookies, saved passwords, and an authenticated context.
  • Automates repetitive tasks across sites that require login or that have CAPTCHAs already solved in Edge.
  • Use cases include automating form submissions, data collection, or testing flows using the user's active Edge context.

Quick Start

Connect Edge to a running Edge instance with remote debugging enabled and start automating tasks using the existing session.

Frequently Asked Questions about edge

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

FAQPage Schema
How do I automate browser tasks using my existing Edge login session?

To automate Edge using your current login state, connect Playwright to a running Edge instance via CDP. This attaches the automation script to your active browser session, utilizing existing cookies and saved passwords without re-authentication.

Can Playwright connect to Edge using an existing logged in session?

Yes, Playwright can connect to Edge using an existing logged in session by utilizing the chromium.connect_over_cdp method. This attaches the automation script to your active browser session, leveraging existing cookies and authenticated states directly.

What is required to start automating Edge with CDP and Playwright?

To start automating Edge with CDP and Playwright, you must launch the Edge browser with the --remote-debugging-port=9222 flag. This enables the DevTools Protocol connection required for Playwright to attach to the running instance.

Does automating Edge with CDP bypass CAPTCHAs and login forms?

Automating Edge with CDP bypasses CAPTCHAs and login forms by attaching to an already active browser session. If you have previously solved CAPTCHAs or logged into websites within that Edge instance, the automation script inherits that authenticated context.

Why use CDP to automate Edge instead of launching a new browser instance?

Using CDP to automate Edge instead of launching a new instance allows you to use your current login state, cookies, and saved passwords. This avoids the friction of re-authenticating or re-solving CAPTCHAs during automated form submissions or data collection tasks.