first-time-setup

Tests initial configuration wizard and profile completion after registration.

Content Preview
# First-Time Setup Template

Tests initial configuration wizard and profile completion after registration.

## Prerequisites
- Newly registered session via `{{newUserStorageStatePath}}`
- App running at `{{baseUrl}}`

---

## TypeScript

```typescript
import { test, expect } from '@playwright/test';

test.describe('First-Time Setup', () => {
  test.use({ storageState: '{{newUserStorageStatePath}}' });

  // Happy path: setup wizard shown on first login
  test('shows setup wizard on first login',
How to Use

Recommended: Install to project (local)

mkdir -p .claude/skills
curl -o .claude/skills/first-time-setup.md \
  https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/playwright-pro/templates/onboarding/first-time-setup.md

Skill is scoped to this project only. Add .claude/skills/ to your .gitignoreif you don't want to commit it.

Alternative: Clone full repo

git clone https://github.com/alirezarezvani/claude-skills

Then reference at engineering-team/playwright-pro/templates/onboarding/first-time-setup.md

Related Skills