Files
claude-skills-reference/engineering-team/playwright-pro/templates/notifications/notification-center.md
Alireza Rezvani d33d03da50 feat: add playwright-pro plugin — production-grade Playwright testing toolkit (#254)
Complete Claude Code plugin with:
- 9 skills (/pw:init, generate, review, fix, migrate, coverage, testrail, browserstack, report)
- 3 specialized agents (test-architect, test-debugger, migration-planner)
- 55 test case templates across 11 categories (auth, CRUD, checkout, search, forms, dashboard, settings, onboarding, notifications, API, accessibility)
- TestRail MCP server (TypeScript) — 8 tools for bidirectional sync
- BrowserStack MCP server (TypeScript) — 7 tools for cross-browser testing
- Smart hooks (auto-validate tests, auto-detect Playwright projects)
- 6 curated reference docs (golden rules, locators, assertions, fixtures, pitfalls, flaky tests)
- Leverages Claude Code built-ins (/batch, /debug, Explore subagent)
- Zero-config for core features; TestRail/BrowserStack via env vars
- Both TypeScript and JavaScript support throughout

Co-authored-by: Leo <leo@openclaw.ai>
2026-03-05 13:50:05 +01:00

129 lines
4.7 KiB
Markdown

# Notification Center Template
Tests full notification list, filtering, and bulk clear.
## Prerequisites
- Authenticated session via `{{authStorageStatePath}}`
- Mix of read/unread notifications seeded
- App running at `{{baseUrl}}`
---
## TypeScript
```typescript
import { test, expect } from '@playwright/test';
test.describe('Notification Center', () => {
test.use({ storageState: '{{authStorageStatePath}}' });
test.beforeEach(async ({ page }) => {
await page.goto('{{baseUrl}}/notifications');
});
// Happy path: notification list visible
test('displays notification list', async ({ page }) => {
await expect(page.getByRole('heading', { name: /notifications/i })).toBeVisible();
await expect(page.getByRole('list', { name: /notifications/i })).toBeVisible();
const items = page.getByRole('listitem');
await expect(items.first()).toBeVisible();
});
// Happy path: filter by unread
test('filters to show only unread notifications', async ({ page }) => {
await page.getByRole('button', { name: /unread/i }).click();
const items = page.getByRole('listitem');
const count = await items.count();
for (let i = 0; i < count; i++) {
await expect(items.nth(i)).toHaveAttribute('aria-label', /unread/i);
}
});
// Happy path: filter by type
test('filters notifications by type', async ({ page }) => {
await page.getByRole('combobox', { name: /type|category/i }).selectOption('{{notificationType}}');
const items = page.getByRole('listitem');
await expect(items.first()).toContainText(/{{notificationTypeLabel}}/i);
});
// Happy path: mark single as read
test('marks individual notification as read', async ({ page }) => {
const first = page.getByRole('listitem').first();
await first.getByRole('button', { name: /mark.*read/i }).click();
await expect(first).not.toHaveAttribute('data-unread', 'true');
});
// Happy path: clear all notifications
test('clears all notifications', async ({ page }) => {
await page.getByRole('button', { name: /clear all/i }).click();
await page.getByRole('dialog').getByRole('button', { name: /confirm/i }).click();
await expect(page.getByText(/no notifications|all cleared/i)).toBeVisible();
await expect(page.getByRole('listitem')).toHaveCount(0);
});
// Happy path: pagination / load more
test('loads more notifications on scroll or button click', async ({ page }) => {
const initialCount = await page.getByRole('listitem').count();
await page.getByRole('button', { name: /load more/i }).click();
const newCount = await page.getByRole('listitem').count();
expect(newCount).toBeGreaterThan(initialCount);
});
// Error case: empty state after clearing
test('shows empty state after clearing all', async ({ page }) => {
await page.getByRole('button', { name: /clear all/i }).click();
await page.getByRole('dialog').getByRole('button', { name: /confirm/i }).click();
await expect(page.getByText(/no notifications/i)).toBeVisible();
});
// Edge case: notification links to source
test('clicking notification navigates to source', async ({ page }) => {
await page.getByRole('listitem').first().getByRole('link').click();
await expect(page).not.toHaveURL('{{baseUrl}}/notifications');
});
});
```
---
## JavaScript
```javascript
const { test, expect } = require('@playwright/test');
test.describe('Notification Center', () => {
test.use({ storageState: '{{authStorageStatePath}}' });
test('displays notification list', async ({ page }) => {
await page.goto('{{baseUrl}}/notifications');
await expect(page.getByRole('list', { name: /notifications/i })).toBeVisible();
await expect(page.getByRole('listitem').first()).toBeVisible();
});
test('filters to unread only', async ({ page }) => {
await page.goto('{{baseUrl}}/notifications');
await page.getByRole('button', { name: /unread/i }).click();
await expect(page.getByRole('listitem').first()).toHaveAttribute('aria-label', /unread/i);
});
test('clears all notifications', async ({ page }) => {
await page.goto('{{baseUrl}}/notifications');
await page.getByRole('button', { name: /clear all/i }).click();
await page.getByRole('dialog').getByRole('button', { name: /confirm/i }).click();
await expect(page.getByText(/no notifications/i)).toBeVisible();
});
});
```
## Variants
| Variant | Description |
|---------|-------------|
| List display | Notification items visible |
| Unread filter | Only unread items shown |
| Type filter | Category filter scopes list |
| Mark single read | Item marked, styling changes |
| Clear all | Confirmation → empty state |
| Load more | Additional items appended |
| Empty state | No-notifications message post-clear |
| Source link | Click navigates away from center |