Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add fugazi/test-automation-skills-agents --skill webapp-selenium-testinggit clone --depth 1 https://github.com/fugazi/test-automation-skills-agentsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/fugazi/test-automation-skills-agents/webapp-selenium-testing)<a href="https://agentmods.dev/skills/fugazi/test-automation-skills-agents/webapp-selenium-testing"><img src="https://agentmods.dev/badge/skills/fugazi/test-automation-skills-agents/webapp-selenium-testing/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/fugazi/test-automation-skills-agents/webapp-selenium-testing"><img src="https://agentmods.dev/badge/skills/fugazi/test-automation-skills-agents/webapp-selenium-testing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Prompt Injection · line 68 Subtle instructions detected that may alter agent decision-making or introduce hidden biases.Fix: Review content for implicit steering or bias. Ensure instructions are explicit and align with the skill's stated purpose.
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00084 | $0.02450 |
| Opus 5 | $0.00042 | $0.01225 |
| Sonnet 5 | $0.00017 | $0.00490 |
| Haiku 4.5 | $0.00008 | $0.00245 |
Grade A, and why
webapp-selenium-testing scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 272 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Web Application Testing with Selenium WebDriver
This skill provides patterns and best practices for browser-based test automation using Selenium WebDriver within a Java/Maven environment.
Activation: This skill is triggered when you need to create Selenium tests, debug browser automation, implement Page Objects, or set up Java test infrastructure.
When to Use This Skill
- Create Selenium WebDriver tests with JUnit 5
- Implement Page Object Model (POM) architecture
- Handle synchronization with Explicit Waits
- Verify UI behavior with AssertJ assertions
- Debug failing browser tests or DOM interactions
- Set up Maven test infrastructure for a new project
- Capture screenshots for debugging
- Validate complex user flows and form submissions
- Test across multiple browsers (Chrome, Firefox, Edge)
Do NOT Use For
- Playwright/TypeScript UI tests (use
playwright-e2e-testing). - Driving a live browser interactively for exploration (use
playwright-cli). - Standalone API/contract testing (use
api-testing). - Governing a regression suite's CI tiers and sharding (use
playwright-regression-testing).
Prerequisites
| Component | Requirement |
|---|---|
| Java JDK | 11 or higher (17+ recommended) |
| Maven | 3.6 or higher |
| Browser | Chrome, Firefox, or Edge |
Note: Selenium Manager (included in Selenium 4.6+) automatically handles browser driver binaries.
Core Patterns
Page Object Model
Separate page interaction logic from test code:
src/
├── main/java/
│ └── com/example/
│ ├── pages/ # Page Object classes
│ │ └── LoginPage.java
│ ├── components/ # Reusable UI components
│ ├── factories/ # WebDriver factory
│ ├── utils/ # Utilities
│ └── base/ # Base classes
└── test/java/
└── com/example/
└── tests/ # Test classes
└── LoginTest.java
What ships with it
20 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- LICENSE.txt 1.0 KB
- references/file-map-template.md 5.0 KB
- references/locator-strategies-debugging.md 2.2 KB
- references/locator-strategies-hierarchy.md 2.2 KB
- references/locator-strategies-patterns.md 3.7 KB
- references/locator-strategies-quick-reference.md 1.5 KB
- references/locator-strategies-selectors.md 2.6 KB
- references/page-object-model-base-page.md 5.1 KB
- references/page-object-model-basics.md 2.2 KB
- references/page-object-model-best-practices.md 2.0 KB
- references/page-object-model-components.md 5.7 KB
- references/page-object-model-pages.md 4.7 KB
- references/page-object-model-patterns.md 3.3 KB
- references/wait-strategies-advanced.md 3.0 KB
- references/wait-strategies-basics.md 2.3 KB
- references/wait-strategies-best-practices.md 2.4 KB
- references/wait-strategies-custom-waits.md 5.6 KB
- references/wait-strategies-expected-conditions.md 5.5 KB
- scripts/pom-template.xml 4.3 KB
- scripts/setup-maven-project.ps1 18 KB runs code
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 272 lines · 84 tokens per session scan A b6cdc852a407
webapp-selenium-testing is a skill published in the GitHub repository fugazi/test-automation-skills-agents (234 stars, last pushed 8d ago), licensed MIT. It adds 84 tokens to every session and 2,450 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
e2e-testing-patterns
Master end-to-end testing with Playwright and Cypress to build reliable test suites that catch bugs, improve confidence, and enable fast deployment. Use when implementing E2E tests, debugging flaky tests, or establishing testing standards.
playwright-cli
Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.
browser-testing-with-screenshots
Use when testing web applications with visual verification - automates Chrome browser interactions, element selection, and screenshot capture for confirming UI functionality.
e2e-testing
Playwright-based end-to-end testing workflow.
playwright-cli
Automates browser interactions for testing and validating your own web applications using playwright-cli. Use when you need terminal-first browser control for navigation, form filling, screenshots, tracing, bound browser sessions, debugging, or generating Playwright test code. Only use against applications you own or…
agent-browser
Use the host-side agent-browser CLI for local browser smoke tests, screenshots, snapshots, and simple UI validation against forwarded localhost URLs.