selenium-testing — community selenium-testing, skriptoteket, community, ide skills

v1.0.0

About this Skill

Perfect for Automation Agents needing advanced browser automation and visual testing capabilities. Browser automation with Selenium WebDriver for Python. (project)

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

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reviewed Landing Page Review Score: 9/11

Killer-Skills keeps this page indexable because it adds recommendation, limitations, and review signals beyond the upstream repository text.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review Locale and body language aligned
Review Score
9/11
Quality Score
51
Canonical Locale
en
Detected Body Locale
en

Perfect for Automation Agents needing advanced browser automation and visual testing capabilities. Browser automation with Selenium WebDriver for Python. (project)

Core Value

Empowers agents to automate browser interactions using selenium and webdriver, enabling visual testing and screenshot capabilities via Python scripts.

Ideal Agent Persona

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

Capabilities Granted for selenium-testing

Automating browser interactions for testing
Generating screenshots for visual validation
Debugging web applications using selenium

! Prerequisites & Limits

  • Requires Python environment
  • Dependent on selenium and webdriver libraries

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

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

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 automation and visual testing capabilities. Browser automation with Selenium WebDriver for Python. (project)

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 interactions for testing, Generating screenshots for visual validation, Debugging web applications using selenium.

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 Python environment. Dependent on selenium and webdriver libraries.

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.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

selenium-testing

Install selenium-testing, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

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.

Related Skills

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

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Developer