Home / billy-enrizky / openbrowser-ai · plugin/skills/e2e-testing/SKILL.md · GitHub

e2e-testing skillB

e2e-testing is agent-read markdown (skill) from billy-enrizky/openbrowser-ai: Test web applications end-to-end by simulating user interactions and verifying expected outcomes. Trigger when the user asks to: test a web app, verify a user flow, run end-to-end tests, QA a feature, check that a page works correctly, validate user journeys, or test a deployment..

Indexed from public GitHub and served as immutable, content-addressed versions. Install it pinned to an exact SHA-256 with the mdr CLI, and every file is verified against the hash recorded here before it reaches your agent. The deterministic audit below grades the latest version, and the same file always earns the same grade.

What the file says

# End-to-End Testing

Simulate real user interactions and verify web application behavior using Python code execution. Covers navigation, form interaction, content assertions, and multi-page flows.

All code runs via `openbrowser-ai -c`. The daemon starts automatically and persists variables across calls. All browser functions are async -- use `await`.

The CLI daemon also persists cookies and login state in `~/.config/openbrowser/profiles/daemon/storage_state.json`, so authenticated sessions can be reused across later runs.

## Setup

Before running, verify openbrowser-ai is installed:

```bash
openbrowser-ai --help
```

If not found, install:

```bash
# macOS/Linux
curl -fsSL https://raw.githubusercontent.com/billy-enrizky/openbrowser-ai/main/install.sh | sh

# Windows (PowerShell)
irm https://raw.githubusercontent.com/billy-enrizky/openbrowser-ai/main/install.ps1 | iex
```

## Workflow

### Step 1 -- Navigate and verify page load

```bash
openbrowser-ai -c - <<'EOF'
await navigate("https://staging.example.com")
state = await browser.get_browser_state_summary()

assert "example" in state.url.lower(), f"Unexpected URL: {state.url}"
assert state.title, "Page title is empty"
…

Read the whole file at its exact version.

How to install

Latest version
mdr add billy-enrizky/openbrowser-ai/e2e-testing@git:20260521.0c71c6f
Exact content
mdr add billy-enrizky/openbrowser-ai/e2e-testing@sha256:79f0323bdb9f6ccb

Pin to a label to follow the author's releases, or to a sha256 to freeze the exact bytes forever. Either way the resolved hash is written to mdr.lock, and mdr install reproduces it on any machine.

Badge

mdr badge

[![mdr](https://markdownregistry.com/badge/art_psayqev6kdrls2ee.svg)](https://markdownregistry.com/a/art_psayqev6kdrls2ee)

1 badge views in 30 days

Versions

versioncommittedcommitsizeaudit
git:20260521.0c71c6f latest2026-05-21 0c71c6f 7,654 BB view · diff
git:20260506.8ed3a322026-05-06 8ed3a32 6,520 BB view · diff
git:20260317.4749a902026-03-17 4749a90 6,344 BB view · diff
git:20260316.285dea52026-03-16 285dea5 6,170 BB view · diff
git:20260315.2801ade2026-03-15 2801ade 6,159 BB view

Audit of the latest version

B  16 of 17 checks passed. Deterministic, no model, same answer every run.
  • fail: No curl or wget piped into a shell (matched: curl -fsSL https://raw.githubusercontent.com/billy-enrizky/openbrowser-ai/main/install.sh | sh)
  • pass: Frontmatter block present
  • pass: Frontmatter declares a name
  • pass: Frontmatter declares a description
  • pass: Size between 200 bytes and 200 KB (7654 bytes)
  • pass: No zero-width or bidi control characters
  • pass: No instruction hidden inside an HTML comment
  • pass: No link to an exfiltration or paste host
  • pass: No credential-shaped string
  • pass: No instruction to send local credentials anywhere
  • pass: No text hidden with inline styles
  • pass: No prompt-injection phrasing
  • pass: No recursive delete of root, home or parent
  • pass: No instruction to read or print local credentials
  • pass: No base64 blob over 200 characters
  • pass: No link to a raw IP address
  • pass: No script tag

Source

GitHub

billy-enrizky/openbrowser-ai · 260 stars · license MIT · pushed 2026-09-22 · branch main

API

GET https://markdownregistry.com/api/v1/artifacts/art_psayqev6kdrls2ee
GET https://markdownregistry.com/api/v1/resolve?ref=billy-enrizky/openbrowser-ai/e2e-testing
GET https://markdownregistry.com/api/v1/blob/79f0323bdb9f6ccbcc2b7b29232c57969775a4f817ee3bb719c8fed3059ba1e4

Your agent does the legwork. You hear about the deals worth your word. Hand yours the standing instructions at modelranch.com and it joins the network that reads files like this one.

More from billy-enrizky/openbrowser-ai

accessibility-audit skill
billy-enrizky/openbrowser-ai · plugin/skills/accessibility-audit/SKILL.md · Audit web pages for accessibility issues, WCAG compliance, and screen reader compatibility. Trigger when the user asks…
git:20260521.0c71c6f · audit B · 260 stars
deep-research skill
billy-enrizky/openbrowser-ai · plugin/skills/deep-research/SKILL.md · Conduct deep web research using the openbrowser-ai agent: decompose a query, investigate sub-questions across multiple…
git:20260920.eb6953e · audit B · 260 stars
file-download skill
billy-enrizky/openbrowser-ai · plugin/skills/file-download/SKILL.md · Download files from websites, save PDFs, and read downloaded content. Trigger when the user asks to: download a file…
git:20260521.0c71c6f · audit B · 260 stars
form-filling skill
billy-enrizky/openbrowser-ai · plugin/skills/form-filling/SKILL.md · Fill out web forms, submit data, and handle login or registration flows. Trigger when the user asks to: fill a form…
git:20260521.0c71c6f · audit B · 260 stars
page-analysis skill
billy-enrizky/openbrowser-ai · plugin/skills/page-analysis/SKILL.md · Analyze web page content, structure, and layout to understand what a page contains and how it is organized. Trigger…
git:20260521.0c71c6f · audit B · 260 stars
web-scraping skill
billy-enrizky/openbrowser-ai · plugin/skills/web-scraping/SKILL.md · Extract structured data from websites, scrape page content, and collect information across multiple pages. Trigger when…
git:20260521.0c71c6f · audit B · 260 stars
llms-full.txt@stress-tests llmstxt
billy-enrizky/openbrowser-ai · stress-tests/llms-full.txt
git:20260218.510531e · audit A · 260 stars

Every file in billy-enrizky/openbrowser-ai

Other files named e2e-testing

e2e-testing skill
affaan-m/ecc · docs/es/skills/e2e-testing/SKILL.md · Patrones de pruebas E2E con Playwright, Page Object Model, configuración, integración CI/CD, gestión de artefactos y…
git:20260607.ac0f11c · audit A · 266,832 stars
e2e-testing skill
affaan-m/ecc · .kiro/skills/e2e-testing/SKILL.md · Playwright E2E testing patterns, Page Object Model, configuration, CI/CD integration, artifact management, and flaky…
git:20260323.535120d · audit A · 266,832 stars
e2e-testing skill
affaan-m/ecc · .agents/skills/e2e-testing/SKILL.md · Playwright E2E testing patterns, Page Object Model, configuration, CI/CD integration, artifact management, and flaky…
git:20260918.c752aac · audit A · 266,832 stars
e2e-testing skill
qwenlm/qwen-code · .qwen/skills/e2e-testing/SKILL.md · Guide for running end-to-end tests of the Qwen Code CLI, including headless mode, MCP server testing, and API traffic…
git:20260611.4f1203b · audit A · 28,110 stars
e2e-testing skill
hashgraph-online/awesome-codex-plugins · plugins/Colin4k1024/tsp/skills/e2e-testing/SKILL.md · Playwright E2E testing patterns, Page Object Model, configuration, CI/CD integration, artifact management, and flaky…
git:20260512.6523792 · audit A · 1,074 stars
e2e-testing skill
nahid-sparktales/agent-dispatcher · skills/quality/e2e-testing/SKILL.md · Build and keep end-to-end suites that are worth their runtime — which journeys belong at this level, selectors that…
git:20260919.a0d4f55 · audit A · 49 stars
e2e-testing skill
crowdstrike/foundry-skills · skills/e2e-testing/SKILL.md · End-to-end testing for Falcon Foundry apps using Playwright and @crowdstrike/foundry-playwright. TRIGGER when user asks…
v1.5.0 · audit A · 28 stars
e2e-testing skill
jdanigo/hydraia · skills/e2e-testing/SKILL.md · Use when writing or maintaining end-to-end tests — Playwright (preferred) or Cypress critical-flow suites. Pattern…
git:20260911.30a4306 · audit A · 8 stars

Browse by kind, by grade B, or by owner.