Token导航 LogoToken导航TokenDH.com
开发操作浏览器github未标认证来源可访问许可证需确认审计通过

positron-e2e-tests正电子端到端测试

Agent Skill

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

总安装

485

周安装

20

GitHub Stars

3,991

下载量

158
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/posit-dev/positron --skill positron-e2e-tests

简介

positron-e2e-tests 用于辅助测试设计、自动化测试和回归验证,适合编写端到端测试用例。

  • 适用于需要单元测试、测试计划或根据失败日志定位问题的开发场景。
  • 使用时需确认项目测试框架、运行命令和夹具数据,避免误改真实逻辑。
  • 涉及浏览器或外部服务时,应区分本地模拟、测试环境与生产环境。
  • 建议配合本地预览和构建检查确认测试改动效果。

SKILL.md

Positron Playwright E2E Testing

Purpose

Provides specialized knowledge and patterns for writing correct, reliable Playwright e2e tests that follow Positron's established conventions and avoid common mistakes.

When to Use This Skill

Load this skill when:

  • Creating new e2e test files
  • Adding test cases to existing test files
  • Debugging flaky or failing tests
  • Understanding the test fixture system
  • Working with page objects
  • Choosing correct selectors and assertions

Critical: Test File Structure

Every test file MUST follow this structure:

import { test, expect, tags } from '../_test.setup';

// REQUIRED: Each test file needs a unique suiteId
test.use({
	suiteId: __filename
});

test.describe('Feature Name', {
	tag: [tags.WEB, tags.WIN, tags.CRITICAL, tags.FEATURE_TAG]
}, () => {

	test.beforeEach(async function ({ app }) {
		// Optional setup for each test
	});

	test.afterEach(async function ({ app, hotKeys }) {
		// Cleanup after each test
		await hotKeys.closeAllEditors();
	});

	test('Test description', async function ({ app, python }) {
		// Test implementation
	});
});

MANDATORY REQUIREMENTS:

  1. Import from ../_test.setup - NOT from @playwright/test
  2. Set suiteId: __filename - Required for app isolation
  3. Use function syntax for tests (not arrow functions) - Required for fixtures
  4. Add appropriate tags for platform filtering

Quick Reference: Available Fixtures

FixtureUse Case
appAccess workbench page objects: app.workbench.console, etc.
pageDirect Playwright page access: page.getByLabel(...)
pythonAuto-start Python interpreter before test
rAuto-start R interpreter before test
sessionsManual session management: await sessions.start('python')
executeCodeExecute code: await executeCode('Python', 'print("hi")');
openFileOpen file: await openFile('workspaces/test/file.py');
hotKeysKeyboard shortcuts: await hotKeys.closeAllEditors();
settingsChange settings: await settings.set({'key': value});

See references/fixtures.md for complete fixture documentation.

Quick Reference: Page Objects

Access via app.workbench.*:

const { console, variables, dataExplorer, plots, notebooks, sessions } = app.workbench;

// Execute code
await console.executeCode('Python', 'x = 1');

// Wait for content
await console.waitForConsoleContents('expected text');

// Variable interaction
await variables.doubleClickVariableRow('df');

// Data explorer
await dataExplorer.grid.verifyTableData([{ col: 'value' }]);

See references/page-objects.md for complete page object documentation.

Quick Reference: Assertions

// Visibility with timeout
await expect(locator).toBeVisible({ timeout: 30000 });

// Text content
await expect(locator).toHaveText('expected');
await expect(locator).toContainText('partial');

// Count
await expect(locator).toHaveCount(3, { timeout: 15000 });

// Retry pattern for flaky operations
await expect(async () => {
	await someAction();
	await expect(resultLocator).toBeVisible();
}).toPass({ timeout: 15000 });

See references/assertions.md for complete assertion patterns.

Quick Reference: Test Tags

Feature tags (what the test covers):

  • tags.CONSOLE, tags.DATA_EXPLORER, tags.NOTEBOOKS, tags.PLOTS, tags.VARIABLES
  • tags.CRITICAL - High priority tests

Platform tags (where the test runs):

  • tags.WEB - Enable web browser testing
  • tags.WIN - Enable Windows testing
  • Default: Linux/Electron only
test.describe('Console Tests', {
	tag: [tags.WEB, tags.WIN, tags.CRITICAL, tags.CONSOLE]
}, () => { ... });

Common Mistakes to Avoid

Critical (will break tests):

  1. Wrong imports - use ../_test.setup, not @playwright/test
  2. Missing suiteId - must have test.use({suiteId: __filename})
  3. Arrow functions - use function syntax, not async ({app}) =>
  4. Missing platform tags - add tags.WEB, tags.WIN for cross-platform

Quality issues: 5. No timeout on assertions - use {timeout: 30000} for async operations 6. No test.step() - wrap complex multi-action sequences for better reports

See references/common-mistakes.md for 26 detailed gotchas with code examples.

Running Tests

# Run specific test file
npx playwright test <test-name>.test.ts --project e2e-electron

# Run all tests in a category
npx playwright test test/e2e/tests/<category>/

# Run with specific tags
npx playwright test --grep @:critical

# Run in headed mode (see browser)
npx playwright test --headed

# Run with debug mode
npx playwright test --debug

# Show test report
npx playwright show-report

Progressive Documentation

For detailed information, read the bundled reference docs:

  • references/test-structure.md - Complete test file structure and organization
  • references/fixtures.md - All available fixtures and their usage
  • references/page-objects.md - Page object patterns and available POMs
  • references/assertions.md - Assertion patterns and waiting strategies
  • references/common-mistakes.md - Comprehensive list of gotchas to avoid

Key Architecture Principles

  1. Worker-scoped app - One app instance per test file (suite)
  2. Test-scoped fixtures - page, sessions, etc. fresh per test
  3. Page Object Model - UI interactions wrapped in POMs via app.workbench.*
  4. Tag-based filtering - Tests tagged for platform and feature filtering
  5. Automatic cleanup - Tracing, screenshots attached on failure

Getting Help

  1. Look at existing tests in test/e2e/tests/<feature>/ for patterns
  2. Check page object source in test/e2e/pages/ for available methods
  3. Read test/e2e/tests/_test.setup.ts for fixture definitions
  4. Use --debug flag to step through tests interactively

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.78%
按下载量换算52

Claude

28.38%
按下载量换算45

Cursor

19.07%
按下载量换算30

Gemini CLI

10.21%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills