selenium-testing — community selenium-testing, skriptoteket, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Perfect for Automation Agents needing advanced browser interaction and visual testing capabilities. Teacher-first Script Hub for running curated, upload-based tools.

paunchygent paunchygent
[0]
[0]
Updated: 3/5/2026

Agent Capability Analysis

The selenium-testing skill by paunchygent is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance.

Ideal Agent Persona

Perfect for Automation Agents needing advanced browser interaction and visual testing capabilities.

Core Value

Empowers agents to automate browser interactions using Selenium WebDriver, enabling visual testing and screenshot comparisons via Python, leveraging libraries like selenium and webdriver.

Capabilities Granted for selenium-testing

Automating browser-based workflows
Performing visual regression testing
Generating screenshots for documentation

! Prerequisites & Limits

  • Requires Selenium WebDriver installation
  • Limited to browser automation and visual testing
  • Python 3.x compatibility required
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

selenium-testing

Install selenium-testing, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly

Selenium Testing

When to Use

  • Browser automation, visual testing
  • Mentions: "selenium", "webdriver", "screenshot"

Canonical Repo Rules

For Skriptoteket-specific login/env conventions, follow:

  • .agents/rules/075-browser-automation.md

Run

bash
1pdm run python -m scripts.<module>

Quick Pattern

python
1import os 2from pathlib import Path 3 4from selenium import webdriver 5from selenium.webdriver.common.by import By 6from selenium.webdriver.support.ui import WebDriverWait 7from selenium.webdriver.support import expected_conditions as EC 8 9 10def _read_dotenv(path: Path) -> dict[str, str]: 11 if not path.exists(): 12 return {} 13 14 values: dict[str, str] = {} 15 for line in path.read_text(encoding="utf-8").splitlines(): 16 stripped = line.strip() 17 if not stripped or stripped.startswith("#") or "=" not in stripped: 18 continue 19 key, value = stripped.split("=", 1) 20 values[key.strip()] = value.strip() 21 return values 22 23 24dotenv = _read_dotenv(Path(os.environ.get("DOTENV_PATH", ".env"))) 25 26 27def _get_config_value(*, key: str, default: str | None = None) -> str | None: 28 return os.environ.get(key) or dotenv.get(key) or default 29 30 31base_url = _get_config_value(key="BASE_URL", default="http://127.0.0.1:8000") or "http://127.0.0.1:8000" 32email = _get_config_value(key="PLAYWRIGHT_EMAIL") or _get_config_value(key="BOOTSTRAP_SUPERUSER_EMAIL") 33password = _get_config_value(key="PLAYWRIGHT_PASSWORD") or _get_config_value( 34 key="BOOTSTRAP_SUPERUSER_PASSWORD" 35) 36 37if not email or not password: 38 raise SystemExit( 39 "Missing credentials. Either set PLAYWRIGHT_EMAIL/PLAYWRIGHT_PASSWORD (recommended for prod) " 40 "or BOOTSTRAP_SUPERUSER_EMAIL/BOOTSTRAP_SUPERUSER_PASSWORD (dev). " 41 "Provide them in DOTENV_PATH (default: .env) or export them in your shell." 42 ) 43 44options = webdriver.ChromeOptions() 45options.add_argument("--headless=new") 46driver = webdriver.Chrome(options=options) 47driver.set_window_size(1440, 900) 48 49# Login 50driver.get(f"{base_url}/login") 51driver.find_element(By.NAME, "email").send_keys(email) 52driver.find_element(By.NAME, "password").send_keys(password) 53driver.find_element(By.CSS_SELECTOR, "button[type='submit']").click() 54WebDriverWait(driver, 10).until(EC.presence_of_element_located((By.XPATH, "//*[contains(., 'Inloggad som')]"))) 55 56# Screenshot 57Path(".artifacts").mkdir(parents=True, exist_ok=True) 58driver.get(f"{base_url}/admin/tools") 59driver.save_screenshot(".artifacts/selenium-admin-tools.png") 60driver.quit()

HTMX Caveat

Use explicit WebDriverWait with EC.url_contains() instead of implicit waits.

Context7

Use mcp__context7__get-library-docs with /seleniumhq/selenium for API details.

FAQ & Installation Steps

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

? Frequently Asked Questions

What is selenium-testing?

Perfect for Automation Agents needing advanced browser interaction and visual testing capabilities. Teacher-first Script Hub for running curated, upload-based tools.

How do I install selenium-testing?

Run the command: npx killer-skills add paunchygent/skriptoteket/selenium-testing. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for selenium-testing?

Key use cases include: Automating browser-based workflows, Performing visual regression testing, Generating screenshots for documentation.

Which IDEs are compatible with selenium-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 selenium-testing?

Requires Selenium WebDriver installation. Limited to browser automation and visual testing. Python 3.x compatibility required.

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 paunchygent/skriptoteket/selenium-testing. 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 selenium-testing immediately in the current project.

Related Skills

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

View All

widget-generator

Logo of f
f

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

149.6k
0
AI

flags

Logo of vercel
vercel

flags is a Next.js feature management skill that enables developers to efficiently add or modify framework feature flags, streamlining React application development.

138.4k
0
Browser

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI