소스 정보
- 저장소
- code-yeongyu/sisyphus-private
- 최근 소스 활동
- 2025년 10월 20일 01:49
- 감지된 SKILL.md 언어
- 영어
- 스타
- 16
- 포크
- 2
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/code-yeongyu/sisyphus-private --skill web-testing명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Create YAML format work plans saved as .sisyphus/tasks/{name}.yaml with strict schema validation. Analyze user requirements, gather project context, and generate structured plans with verification specs. ALWAYS includes mandatory plan-reviewer verification. Use when users request YAML-based work planning or Sisyphus-compatible task breakdown.
Specialized GitHub PR intelligence agent for automatically gathering comprehensive context from Pull Requests. Activate when users need CI failure analysis, review comment investigation, or PR status assessment. Triggers on requests like "CI 실패 원인 찾아줘", "gather review comments", "check PR status", "analyze PR".
Commits changes in atomic units following dependency order. Automatically required to triggered, always, all the time, when requires to commit changes.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | web-testing |
| description | Web testing patterns and best practices using Playwright for automated testing |
This skill covers comprehensive web testing patterns using Playwright, including test structure, assertions, mocking, and best practices for reliable automated testing.
import { test, expect } from '@playwright/test';
test.describe('User Authentication', () => {
test.beforeEach(async ({ page }) => {
await page.goto('https://example.com/login');
});
test('should login with valid credentials', async ({ page }) => {
const username = 'testuser@example.com';
const password = 'SecurePass123';
await page.fill('input[name="email"]', username);
await page.fill('input[name="password"]', password);
await page.click('button[type="submit"]');
await expect(page).toHaveURL(/.*dashboard/);
await expect(page.locator('.welcome-message')).toBeVisible();
});
test('should show error with invalid credentials', async ({ page }) => {
await page.fill('input[name="email"]', 'wrong@example.com');
await page.fill('input[name="password"]', 'wrongpass');
await page.click('button[type="submit"]');
await expect(page.locator('.error-message')).toContainText('Invalid credentials');
});
});
import { test } from '@playwright/test';
test.describe('E-commerce Checkout', () => {
test.beforeAll(async ({ browser }) => {
console.log('Setting up test database');
});
test.beforeEach(async ({ page }) => {
await page.goto('https://example.com');
await page.fill('input[name="email"]', 'test@example.com');
await page.fill('input[name="password"]', 'password123');
await page.click('button[type="submit"]');
});
test.afterEach(async ({ page }) => {
await page.click('[data-testid="clear-cart"]');
});
test.afterAll(async () => {
console.log('Cleaning up test database');
});
test('should add item to cart', async ({ page }) => {
await page.click('[data-product-id="123"]');
await page.click('button:has-text("Add to Cart")');
(page.()).();
});
});
import { test, expect } from '@playwright/test';
const testData = [
{ input: 'john@example.com', expected: true },
{ input: 'invalid-email', expected: false },
{ input: 'another@test.co.uk', expected: true },
{ input: '@nodomain.com', expected: false }
];
testData.forEach(({ input, expected }) => {
test(`should validate email: ${input}`, async ({ page }) => {
await page.goto('https://example.com/signup');
await page.fill('input[name="email"]', input);
await page.click('button[type="submit"]');
if (expected) {
await expect(page.locator('.error-message')).not.toBeVisible();
} else {
await expect(page.locator('.error-message')).toBeVisible();
}
});
});
import { test as base, expect } from '@playwright/test';
const test = base.extend({
authenticatedPage: async ({ page }, use) => {
await page.goto('https://example.com/login');
await page.fill('input[name="email"]', 'test@example.com');
await page.fill('input[name="password"]', 'password123');
await page.click('button[type="submit"]');
await page.waitForURL('**/dashboard');
await use(page);
await page.click('[data-testid="logout"]');
}
});
test('should access protected resource', async ({ authenticatedPage }) => {
await authenticatedPage.goto('https://example.com/profile');
await expect(authenticatedPage.locator('h1')).toContainText('My Profile');
});
import { test, expect } from '@playwright/test';
test('element visibility checks', async ({ page }) => {
await page.goto('https://example.com');
await expect(page.locator('.header')).toBeVisible();
await expect(page.locator('.modal')).toBeHidden();
await expect(page.locator('.hidden-div')).toBeAttached();
await expect(page.locator('.removed-element')).not.toBeAttached();
});
test('text content checks', async ({ page }) => {
await page.goto('https://example.com');
await expect(page.locator('h1')).toHaveText('Welcome');
await expect(page.locator('.description')).toContainText('product');
await expect(page.locator('.price')).toHaveText(/\$\d+\.\d{2}/);
await expect(page.locator('.item-title')).toHaveText([
'Item 1',
'Item 2',
'Item 3'
]);
});
test('attribute and state checks', async ({ page }) => {
await page.goto('https://example.com/form');
await expect(page.locator('input[name="email"]')).toHaveAttribute('type', 'email');
await expect(page.locator('.button')).toHaveClass(/primary/);
await expect(page.locator('.list-item')).toHaveCount(5);
await expect(page.locator('input[name="username"]')).toHaveValue('john.doe');
await expect(page.locator('input[type="checkbox"]')).toBeChecked();
await expect(page.locator('input[type="checkbox"]')).not.toBeChecked();
await expect(page.locator('button[type="submit"]')).toBeEnabled();
await expect(page.()).();
(page.()).();
});
test('URL and page checks', async ({ page }) => {
await page.goto('https://example.com/products');
await expect(page).toHaveURL('https://example.com/products');
await expect(page).toHaveURL(/.*products/);
await expect(page).toHaveTitle('Products - Example Store');
await expect(page).toHaveTitle(/Products/);
});
test('custom assertions', async ({ page }) => {
await page.goto('https://example.com/cart');
const cartTotal = await page.locator('.cart-total').textContent();
expect(parseFloat(cartTotal.replace('$', ''))).toBeGreaterThan(0);
await expect.soft(page.locator('.item')).toHaveCount(3);
await expect.soft(page.locator('.discount-badge')).toBeVisible();
const element = page.locator('.product');
await expect(element).toBeVisible();
await expect(element).toContainText('Special Offer');
await expect(element).toHaveClass('highlighted');
});
import { test, expect } from '@playwright/test';
test('mock API response', async ({ page }) => {
await page.route('**/api/products', route => {
route.fulfill({
status: 200,
contentType: 'application/json',
body: JSON.stringify([
{ id: 1, name: 'Mocked Product 1', price: 19.99 },
{ id: 2, name: 'Mocked Product 2', price: 29.99 }
])
});
});
await page.goto('https://example.com/products');
await expect(page.locator('.product').first()).toContainText('Mocked Product 1');
});
test('conditional network mocking', async ({ page }) => {
await page.route('**/api/**', route => {
const url = route.request().url();
if (url.includes('/api/slow-endpoint')) {
route.fulfill({
status: 200,
body: JSON.stringify({ data: 'fast response' })
});
} else if (url.includes('/api/error-prone')) {
route.fulfill({ status: 500 });
} else {
route.continue();
}
});
await page.goto('https://example.com');
});
test('modify outgoing requests', async ({ page }) => {
await page.route('**/api/data', route => {
const headers = {
...route.request().headers(),
'Authorization': 'Bearer mock-token-123'
};
route.continue({ headers });
});
await page.goto('https://example.com/dashboard');
});
test('simulate slow network', async ({ page }) => {
await page.route('**/api/products', async route => {
await new Promise(resolve => setTimeout(resolve, 3000));
await route.fulfill({
status: 200,
body: JSON.stringify({ products: [] })
});
});
await page.goto('https://example.com/products');
await expect(page.locator('.loading-spinner')).toBeVisible();
});
// GOOD: Use test IDs
await page.click('[data-testid="submit-button"]');
// GOOD: Use semantic selectors
await page.click('button:has-text("Submit")');
await page.getByRole('button', { name: 'Submit' }).click();
// GOOD: Use labels for inputs
await page.getByLabel('Email address').fill('test@example.com');
// AVOID: Fragile CSS selectors
// await page.click('div > div > button:nth-child(3)');
test('proper waiting', async ({ page }) => {
await page.goto('https://example.com');
await page.waitForLoadState('networkidle');
await expect(page.locator('.content')).toBeVisible();
await expect(page.locator('.dynamic-content')).toBeVisible();
// AVOID: Fixed timeouts like await page.waitForTimeout(5000);
});
// GOOD: Each test is independent
test.describe('Product Tests', () => {
test('test 1', async ({ page }) => {
await page.goto('https://example.com');
// Complete test flow
});
test('test 2', async ({ page }) => {
await page.goto('https://example.com');
// Complete test flow (does not depend on test 1)
});
});
test('handle unexpected states', async ({ page }) => {
await page.goto('https://example.com');
const cookieBanner = page.locator('.cookie-banner');
if (await cookieBanner.isVisible()) {
await cookieBanner.locator('button:has-text("Accept")').click();
}
await page.click('[data-testid="main-action"]');
});
export class LoginPage {
constructor(page) {
this.page = page;
this.emailInput = page.locator('input[name="email"]');
this.passwordInput = page.locator('input[name="password"]');
this.submitButton = page.locator('button[type="submit"]');
}
async login(email, password) {
await this.emailInput.fill(email);
await this.passwordInput.fill(password);
await this.submitButton.click();
}
}
import { LoginPage } from './page-objects/LoginPage';
test('login flow', async ({ page }) => {
const loginPage = new LoginPage(page);
await page.goto('https://example.com/login');
await loginPage.login(, );
(page).();
});
// playwright.config.js
export default {
use: {
screenshot: 'only-on-failure',
trace: 'retain-on-failure',
video: 'retain-on-failure'
}
};
test('critical flow', async ({ page }) => {
await page.goto('https://example.com');
await page.screenshot({ path: 'screenshots/before-action.png' });
await page.click('[data-testid="critical-button"]');
await expect(page.locator('.success-message')).toBeVisible();
});
test('page load performance', async ({ page }) => {
const startTime = Date.now();
await page.goto('https://example.com');
await page.waitForLoadState('networkidle');
const loadTime = Date.now() - startTime;
expect(loadTime).toBeLessThan(3000);
});
This skill provides a comprehensive foundation for writing reliable, maintainable web tests using Playwright.