소스 정보
- 저장소
- ariadoss/superskills
- 최근 소스 활동
- 2026년 4월 18일 21:55
- 감지된 SKILL.md 언어
- 영어
- 스타
- 9
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/ariadoss/superskills --skill playwright명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes
Use when you have a written implementation plan to execute in a separate session with review checkpoints
Use when executing implementation plans with independent tasks in the current session
| name | playwright |
| description | End-to-end testing with Playwright — generate, run, and debug E2E tests. |
| allowed-tools | ["Bash","Read","Write","Edit","Grep","Glob"] |
Generate and run Playwright end-to-end tests for web applications.
npx playwright --version
If not installed:
npm init playwright@latest
# or add to existing project:
npm install -D @playwright/test && npx playwright install
Read the source files for the page/component to test. Understand routes, interactive elements, and expected behaviors.
Create a test file following the project's existing patterns and directory structure.
import { test, expect } from '@playwright/test';
test.describe('Feature Name', () => {
test.beforeEach(async ({ page }) => {
// Setup: navigate, authenticate, seed data
});
test('should do expected behavior', async ({ page }) => {
// Arrange
// Act
// Assert
});
});
npx playwright test <file> # Run specific test file
npx playwright test --headed # With visible browser
npx playwright test --ui # Playwright UI mode
npx playwright test --trace on # Capture trace for debugging
--trace on and open trace viewer: npx playwright show-trace trace.zipawait page.screenshot({ path: 'debug.png' })page.pause() for step-by-step debugging in headed modepage.goto(), URL assertions, redirect verificationpage.fill(), page.selectOption(), page.check(), multi-step wizardsexpect(page).toHaveURL(), expect(locator).toBeVisible(), toHaveText()page.screenshot(), full-page, element-levelexpect(page).toHaveScreenshot() with thresholds@axe-core/playwright, ARIA role selectors, keyboard navigationpage.route() for mocking, page.waitForResponse() for API callsdata-testid attributes for stable selectorstest.step() for complex multi-step flowsbaseURL in playwright.config.tspage.waitForResponse() for async navigation