Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

e2e-test-conventionse2e 测试约定

Agent Skill

用于辅助测试设计、自动化测试、用例整理和回归验证。它适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑;涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。

总安装

490

周安装

20

GitHub Stars

8

下载量

157
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:e2e-test-conventions(e2e 测试约定)
来源仓库:https://github.com/agentmantis/test-skills
仓库路径:skills/e2e-test-conventions
安装命令:
npx skills add https://github.com/agentmantis/test-skills --skill e2e-test-conventions
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/agentmantis/test-skills --skill e2e-test-conventions

简介

定义 Playwright E2E 测试的统一规范与技术标准。

  • 涵盖项目结构、页面对象模型、自定义夹具与网络拦截等模块。
  • 强调 TypeScript 使用与框架无关性,适配不同 UI 技术栈。
  • 需遵循 auth.setup.ts 与 fixtures 的组织方式,保持测试隔离性。
  • e2e-test-conventions 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

E2E Test Conventions

These conventions apply to all Playwright E2E test code. Read and follow them whenever generating, modifying, or reviewing tests.


Technology Stack

  • Playwright for browser automation and test running
  • TypeScript for all test code (no plain JavaScript)
  • Framework-agnostic — adapt selectors and helpers to whatever UI framework the project uses

Project Structure

The e2e/ directory follows this layout:

e2e/
├── auth/                    # Authentication setup (runs before all tests)
│   └── auth.setup.ts        # Logs in and saves session state
├── fixtures/                # Custom Playwright fixtures
│   └── base.ts              # Extends Playwright's test with custom fixtures
├── helpers/                 # Shared utility functions (NOT page objects)
│   └── env-config.ts        # Environment resolution
├── poms/                    # Page Object Models (one file per page)
│   └── base.page.ts         # Abstract base class — all POMs extend this
├── test-data/               # External test data (JSON files)
├── tests/                   # Test specs organised by suite
│   ├── handover/            # Ticket-driven handover tests (temporary)
│   ├── regression/          # Full regression tests (permanent)
│   └── smoke/               # Quick critical-path checks
├── playwright.config.ts
├── tsconfig.json
└── .env.example             # Template for environment variables

Rules:

  • Do NOT create files outside this structure
  • Do NOT move existing files without explicit permission

See references/folder-structure.md for details on each directory.


Browser × Suite Configuration

The Playwright config defines projects using {browser}:{suite} naming:

Browsers: chromium, firefox, webkit, mobile-chrome, mobile-safari

Suites:

SuiteDirectoryPurposeLifecycle
regressiontests/regression/Full regressionPermanent
handovertests/handover/Ticket-driven handoverTemporary — promote or delete
smoketests/smoke/Critical-path sanityPermanent

Every project depends on the setup project which handles authentication.

Running Tests

# From e2e/ directory
npx playwright test                                    # All browsers × all suites
npx playwright test --project="chromium:regression"    # Single project
npx playwright test --project="*:smoke"                # One suite, all browsers
npx playwright test --project="firefox:*"              # One browser, all suites

Naming Conventions

TypePatternExample
Page Object Model{feature}.page.ts in poms/dashboard.page.ts
Regression spec{feature}.spec.ts in tests/regression/dashboard.spec.ts
Smoke spec{feature}.spec.ts in tests/smoke/dashboard.spec.ts
Handover spec{TICKET}-{description}.spec.ts in tests/handover/PROJ-123-bulk-delete.spec.ts
Test data{feature}.json in test-data/dashboard.json

The {feature} name must match across POM, spec, and test-data files.


Test Independence and Parallelism

Every Test Must Be Fully Independent

  • Each test runs in isolation and in any order
  • A test must never depend on state created by a previous test
  • Each test navigates to its page via the POM's navigation method

Parallel Safety

All tests run in parallel across multiple workers. To avoid collisions:

  • Append unique suffixes (timestamp + random ID) to all test data values
  • Never share mutable state between tests
  • Each test creates its own data, verifies it, and cleans it up

Authentication

Authentication is performed once in a setup project (auth/auth.setup.ts) that runs before all test projects. The session state is saved to a file and reused via Playwright's storageState configuration.

NEVER write login logic in specs, POMs, beforeEach, or beforeAll. Authentication is already handled.

If the application stores auth tokens in IndexedDB (Firebase Auth, Supabase, AWS Amplify, etc.), use the indexedDB option:

await page.context().storageState({ path: authFile, indexedDB: true });

See references/auth-setup.md for the full pattern.


Navigation

  • Always use direct URL navigation (page.goto('/dashboard'))
  • Do NOT click through menus or sidebars — menu state and animations cause flaky tests
  • After navigating, assert the URL and a key heading/element are visible

BasePage vs Derived POM Methods

BasePage is the single home for reusable helper methods that are useful across multiple pages. Derived POMs should stay focused on page-specific behavior only.

When a method belongs in BasePage

Move a helper to BasePage when it is:

  • Reusable across multiple POMs — e.g., dismissing a modal, waiting for a toast notification, or checking a loading spinner
  • Not tightly coupled to a single page — it works the same regardless of which page is active
  • Generic enough to be inherited cleanly — no page-specific selectors or assumptions
  • Likely to be duplicated if left in a feature-specific POM

Examples of BasePage helpers:

  • waitForToast(message) — waits for and verifies a toast notification
  • dismissModal() — closes any open modal dialog
  • waitForLoadingComplete() — waits for a loading spinner to disappear
  • getTableRowCount() — counts rows in a data table present on many pages

When a method belongs in a derived POM

Keep a helper in the specific POM when it is:

  • Unique to one page — e.g., filling a page-specific form
  • Dependent on page-specific structure — uses selectors that only exist on that page
  • Not expected to be reused elsewhere

Why this matters

  • Reduces duplication — shared logic lives in one place instead of being copied across POMs
  • Centralises shared behavior — updates to a common helper propagate to all POMs automatically
  • Keeps derived POMs small and focused — each POM only contains what is specific to its page
  • Improves discoverability — developers know to look at BasePage for shared utilities

Rule

If you find yourself writing the same helper in a second POM, promote it to BasePage immediately. Do not leave duplicate helpers scattered across feature POMs.


Selectors and Locator Strategy

Use this priority order:

  1. getByRole() — buttons, headings, dialogs (most resilient)
  2. getByLabel() — form fields
  3. getByText() — visible text content
  4. getByPlaceholder() — input placeholders
  5. locator() with CSS / filter() — last resort

Tips:

  • Dynamically rendered attributes (tooltips, popovers) may not be in the DOM at query time — use filter() to match child content
  • Icon buttons often lack visible text — match by aria-label or child icon content
  • Prefer role-based and label-based selectors over CSS classes (brittle and framework-specific)

See references/selector-priority.md for examples.


Environment Configuration

Each environment has its own .env.{env} file in the e2e/ directory:

FileEnvironment
.env.localLocal development
.env.devDevelopment server
.env.testTest server
.env.uatUAT server
.env.productionProduction

Every file uses the same variable names — only the values differ:

BASE_URL="https://your-app.example.com"
LOGIN_EMAIL="test-user@example.com"
LOGIN_PASSWORD="your-password"
AUTH_FILE="e2e/.auth/user.json"

Selecting the Active Environment

TEST_ENV is required. If it is not set, env-config.ts throws immediately — the test run will not start. This prevents accidental E2E runs against production when someone forgets to set the variable.

TEST_ENV=dev npx playwright test          # loads .env then .env.dev
TEST_ENV=production npx playwright test    # loads .env then .env.production
npx playwright test                        # ❌ ERROR — TEST_ENV is not set

Two-Layer Loading

helpers/env-config.ts reads TEST_ENV and loads environment variables in two layers via dotenv:

  1. e2e/.env — base file (can hold TEST_ENV and all variables)
  2. e2e/.env.{env} — optional environment-specific override

Both files are optional. If neither exists the process relies on variables already present in the environment (e.g. injected by CI or a container). dotenv never overwrites a variable that is already set, so CLI exports and CI-injected values always win.

The module exports helper functions — getEnvConfig(), getBaseUrl(), getCredentials(), and getAuthFilePath() — instead of a static constant. Loading runs once per process; subsequent calls are no-ops.

Rules

  • TEST_ENV is required — missing it throws an error so E2E runs never silently target production
  • All variables (BASE_URL, LOGIN_EMAIL, LOGIN_PASSWORD, AUTH_FILE) are required — missing ones throw an error
  • Never fall back to hardcoded defaults for required environment values; throw an error if they are missing
  • .env.* files contain secrets and are git-ignored
  • .env.example is the only env file committed — it serves as the template

Test Data

  • All test data lives in e2e/test-data/{feature}.json
  • Never hardcode data in spec or POM files
  • Use a custom fixture to load and stamp test data with unique suffixes
  • Always import test from your custom fixtures, not from @playwright/test

Spec File Rules

  • All page interaction goes through POMs — never call page.getByRole(), page.locator(), etc. directly in specs
  • The only acceptable uses of page in a spec: passing to POM constructor, or creating contexts in beforeAll
  • Use test.beforeAll with a manually created browser context to call POM setUp() for cleanup
  • Each test navigates independently via POM navigation methods

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.33%
按下载量换算51

Claude

29.26%
按下载量换算46

Cursor

19.72%
按下载量换算31

Gemini CLI

8.75%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills