Use this skill every user want to create test file.
Generates Playwright E2E test files following strict rules for independence and selectors. Use when users request test file creation for any scenario.
/plugin marketplace add venturo-id/venturo-claude/plugin install venturo-e2e-web@venturo-toolsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
waitForTimeout alone when a request is triggered, MUST use page.waitForLoadState('networkidle'); followed by page.waitForTimeout(500).page.waitForTimeout(500) after every click action to prevent race conditions.// Components :
// - You must add all "Component Path" from plan markdown
import { test, expect, type Page } from '@playwright/test';
const BASE_URL = process.env.BASE_URL || 'http://localhost:5173';
const AUTH_EMAIL = process.env.AUTH_EMAIL || 'tantowi@gmail.com';
const AUTH_PASSWORD = process.env.AUTH_PASSWORD || 'Bismillah1407*';
// @INFO Create function mockData() to generate dynamic mock for test data. Dont add any test data into environment.
function mockData() {
// @TODO generate mock test data here
const name = "wahyu" + Date.now();
return {
name: name
}
}
async function login(page: Page) {
await page.goto(`${BASE_URL}/auth/login`);
await page.waitForLoadState('networkidle');
// @TODO(verified): Change with real selector from playwright-e2e probe
await page.locator('input[name="email"]').fill(AUTH_EMAIL);
await page.locator('input[name="password"]').fill(AUTH_PASSWORD);
await page.locator('button[type="submit"]').click();
await page.waitForLoadState('networkidle');
await page.waitForTimeout(2000);
}
test.describe('SCN-1: User Management - View Users List', () => {
test('SCN-1: User Management - View Users List end-to-end', async ({ page }) => {
await login(page);
await test.step('should display users list with correct elements', async () => {
// @TODO Do any step and assertion
});
// @TODO fill with next step
})
})
getByLabel.getByText.button, input, textarea, select, table, td, tr, th and etc.data-testid and getByRole.evaluate for assertion *.toBeVisible()Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.