Bundles the prior autonomous-session output that was sitting unstaged: - Em-dash sweep across src/ + tests/ (en-dash/em-dash to hyphen, ~2280 instances) - country-flag-icons rollout (CountryFlag component, replaces emoji glyphs that never rendered on Windows; lazy-loads the 3x2 SVG index as a single chunk after the per-subpath dynamic-import approach silently failed in webpack) - Admin IA Phase 1+2: 7-domain regroup, 41 to 38 pages, /admin/berths index, redirects (ocr to ai, reports to dashboard, invitations to users), docs/admin-ia-proposal.md - Per-template email tester (registry + endpoint + UI on Email admin page) - Cancel-document mode picker (delete-from-Documenso vs keep-for-audit) - Dashboard PDF report: 25 widgets, SVG charts, date-range picker, 11 resolvers - Customize-widgets per-region sortables at xl+ (charts/rails/feed); single flat sortable below xl when the layout stacks; per-viewport saved orders - Audit doc updates capturing each shipped item - Lint fixes: react-compiler immutability in DonutChart (reduce instead of let-reassign), set-state-in-effect disables in CountryFlag and UploadForSigning preview-bytes effect, unused 'confirm' destructures in interest contract + reservation tabs, unescaped apostrophe in test-template card copy
144 lines
4.6 KiB
TypeScript
144 lines
4.6 KiB
TypeScript
import type { Page } from '@playwright/test';
|
|
|
|
export interface ClickEverythingOptions {
|
|
/**
|
|
* Substrings matched against each element's outerHTML to skip destructive
|
|
* interactions. The helper extracts the opening tag (first 200 chars of
|
|
* outerHTML) so test-ids, aria labels, class names, and tag names are all
|
|
* matchable. Default skips cover archive/delete/restore/transfer/sign-out.
|
|
*/
|
|
skip?: string[];
|
|
/**
|
|
* Optional cleanup hook invoked after each click (and after auto-closing any
|
|
* dialog opened by the click). Useful when a click flips global state and
|
|
* the next iteration needs the page fresh.
|
|
*/
|
|
cleanupBetween?: () => Promise<void>;
|
|
/**
|
|
* Per-click timeout in ms. Defaults to 2000.
|
|
*/
|
|
clickTimeoutMs?: number;
|
|
/**
|
|
* If true (default), the helper navigates back to the starting URL after
|
|
* each click that changed the URL. Set to false for pages where the goal is
|
|
* to follow links (e.g. nav menus) end-to-end.
|
|
*/
|
|
returnToStart?: boolean;
|
|
}
|
|
|
|
export interface ClickEverythingResult {
|
|
clicked: number;
|
|
skipped: number;
|
|
errors: string[];
|
|
}
|
|
|
|
const DEFAULT_SKIP = [
|
|
'data-testid="archive"',
|
|
'data-testid="delete"',
|
|
'data-testid="restore"',
|
|
'data-testid="transfer-yacht"',
|
|
'data-testid="sign-out"',
|
|
'aria-label="Sign out"',
|
|
'aria-label="Log out"',
|
|
'>Archive<',
|
|
'>Delete<',
|
|
'>Restore<',
|
|
'>Transfer<',
|
|
];
|
|
|
|
/**
|
|
* Click every visible button, link, and role=button on the current page and
|
|
* record any console errors, network 4xx/5xx responses, or click failures.
|
|
*
|
|
* Why: a fast smoke check that no UI element 500s, throws, or routes to a
|
|
* stale endpoint after a refactor - without writing per-button assertions.
|
|
*
|
|
* The helper is intentionally tolerant: a single click that fails only adds
|
|
* to `errors` rather than throwing, so the caller can attribute failures to
|
|
* specific elements via the returned list.
|
|
*/
|
|
export async function clickEverythingOnPage(
|
|
page: Page,
|
|
opts: ClickEverythingOptions = {},
|
|
): Promise<ClickEverythingResult> {
|
|
const startingUrl = page.url();
|
|
const errors: string[] = [];
|
|
let clicked = 0;
|
|
let skipped = 0;
|
|
|
|
const skipPatterns = [...DEFAULT_SKIP, ...(opts.skip ?? [])];
|
|
const clickTimeout = opts.clickTimeoutMs ?? 2000;
|
|
const returnToStart = opts.returnToStart ?? true;
|
|
|
|
const onConsole = (msg: import('@playwright/test').ConsoleMessage) => {
|
|
if (msg.type() === 'error') {
|
|
errors.push(`[console] ${msg.text().slice(0, 300)}`);
|
|
}
|
|
};
|
|
const onResponse = (resp: import('@playwright/test').Response) => {
|
|
if (resp.status() >= 400) {
|
|
const url = resp.url();
|
|
// Ignore third-party noise; focus on app endpoints.
|
|
if (url.includes(new URL(startingUrl).host)) {
|
|
errors.push(`[network] ${resp.status()} ${url}`);
|
|
}
|
|
}
|
|
};
|
|
page.on('console', onConsole);
|
|
page.on('response', onResponse);
|
|
|
|
try {
|
|
const elements = await page.locator(':is(button, a, [role="button"])').all();
|
|
for (const el of elements) {
|
|
let outerHtml = '';
|
|
try {
|
|
outerHtml = (await el.evaluate((n) => (n as HTMLElement).outerHTML)).slice(0, 200);
|
|
} catch {
|
|
// Element detached between locator and evaluate - skip silently.
|
|
continue;
|
|
}
|
|
|
|
if (skipPatterns.some((pat) => outerHtml.includes(pat))) {
|
|
skipped++;
|
|
continue;
|
|
}
|
|
|
|
try {
|
|
if (!(await el.isVisible({ timeout: 250 }).catch(() => false))) {
|
|
continue;
|
|
}
|
|
|
|
await el.click({ timeout: clickTimeout });
|
|
clicked++;
|
|
|
|
// Let any async UI settle (navigation, fetches, animations).
|
|
await page.waitForLoadState('networkidle', { timeout: 5000 }).catch(() => undefined);
|
|
|
|
// If a dialog opened, close it so the next click isn't blocked.
|
|
const dialogClose = page.locator('[role="dialog"] [aria-label="Close"]').first();
|
|
if (await dialogClose.isVisible({ timeout: 250 }).catch(() => false)) {
|
|
await dialogClose.click({ timeout: 1000 }).catch(() => undefined);
|
|
} else {
|
|
// Best-effort Esc to dismiss any open menu/popover.
|
|
await page.keyboard.press('Escape').catch(() => undefined);
|
|
}
|
|
|
|
if (returnToStart && page.url() !== startingUrl) {
|
|
await page.goto(startingUrl, { waitUntil: 'networkidle' }).catch(() => undefined);
|
|
}
|
|
|
|
if (opts.cleanupBetween) {
|
|
await opts.cleanupBetween();
|
|
}
|
|
} catch (err) {
|
|
errors.push(`[click] ${outerHtml.slice(0, 100)} → ${(err as Error).message}`);
|
|
}
|
|
}
|
|
} finally {
|
|
page.off('console', onConsole);
|
|
page.off('response', onResponse);
|
|
}
|
|
|
|
return { clicked, skipped, errors };
|
|
}
|