2025-12-03 17:16:14 +01:00
|
|
|
// wxWizard Tests - Footprint Wizard simulation
|
2026-07-07 10:50:24 +02:00
|
|
|
import { test, expect, waitForWxApp } from './utils/fixtures';
|
|
|
|
|
import { clickByLabel, waitForElement, stableShot } from './utils/element-tracker';
|
2025-12-03 17:16:14 +01:00
|
|
|
|
|
|
|
|
test.describe('wxWizard Tests', () => {
|
|
|
|
|
|
|
|
|
|
test('Wizard test app loads successfully', async ({ page, testLogger }) => {
|
|
|
|
|
await page.goto('/standalone/wizard/wizard_test.html');
|
2026-07-07 10:50:24 +02:00
|
|
|
await waitForWxApp(page);
|
2025-12-03 17:16:14 +01:00
|
|
|
|
2026-07-07 10:50:24 +02:00
|
|
|
await stableShot(page, 'wizard-01-loaded.png', { fullPage: true });
|
2025-12-03 17:16:14 +01:00
|
|
|
|
|
|
|
|
expect(testLogger.errors.filter(e => !e.includes('favicon'))).toHaveLength(0);
|
|
|
|
|
});
|
|
|
|
|
|
2026-07-07 10:50:24 +02:00
|
|
|
test('Wizard dialog can be launched', async ({ page }) => {
|
2025-12-03 17:16:14 +01:00
|
|
|
await page.goto('/standalone/wizard/wizard_test.html');
|
2026-07-07 10:50:24 +02:00
|
|
|
await waitForWxApp(page);
|
2025-12-03 17:16:14 +01:00
|
|
|
|
2025-12-30 14:17:51 +01:00
|
|
|
// Click Launch button using element registry
|
2026-07-07 10:50:24 +02:00
|
|
|
await waitForElement(page, 'Launch Footprint Wizard');
|
2025-12-30 14:17:51 +01:00
|
|
|
const clicked = await clickByLabel(page, 'Launch Footprint Wizard');
|
|
|
|
|
expect(clicked, 'Launch Wizard button should be found and clicked').toBe(true);
|
2025-12-03 17:16:14 +01:00
|
|
|
|
2026-07-07 10:50:24 +02:00
|
|
|
await stableShot(page, 'wizard-02-launch.png', { fullPage: true });
|
2025-12-03 17:16:14 +01:00
|
|
|
});
|
|
|
|
|
|
2026-07-07 10:50:24 +02:00
|
|
|
test('Wizard can navigate to next page', async ({ page }) => {
|
2025-12-03 17:16:14 +01:00
|
|
|
await page.goto('/standalone/wizard/wizard_test.html');
|
2026-07-07 10:50:24 +02:00
|
|
|
await waitForWxApp(page);
|
2025-12-03 17:16:14 +01:00
|
|
|
|
2025-12-30 14:17:51 +01:00
|
|
|
// Launch wizard using element registry
|
2026-07-07 10:50:24 +02:00
|
|
|
await waitForElement(page, 'Launch Footprint Wizard');
|
2025-12-30 14:17:51 +01:00
|
|
|
const launchClicked = await clickByLabel(page, 'Launch Footprint Wizard');
|
|
|
|
|
expect(launchClicked, 'Launch Wizard button should be found').toBe(true);
|
|
|
|
|
|
|
|
|
|
// Click Next using element registry
|
2026-07-07 10:50:24 +02:00
|
|
|
await waitForElement(page, 'Next');
|
2025-12-30 14:17:51 +01:00
|
|
|
const nextClicked = await clickByLabel(page, 'Next');
|
|
|
|
|
expect(nextClicked, 'Next button should be found and clicked').toBe(true);
|
2025-12-03 17:16:14 +01:00
|
|
|
|
2026-07-07 10:50:24 +02:00
|
|
|
await stableShot(page, 'wizard-03-next-page.png', { fullPage: true });
|
2025-12-03 17:16:14 +01:00
|
|
|
});
|
|
|
|
|
|
2026-07-07 10:50:24 +02:00
|
|
|
test('Wizard can navigate back', async ({ page }) => {
|
2025-12-03 17:16:14 +01:00
|
|
|
await page.goto('/standalone/wizard/wizard_test.html');
|
2026-07-07 10:50:24 +02:00
|
|
|
await waitForWxApp(page);
|
2025-12-03 17:16:14 +01:00
|
|
|
|
2025-12-30 14:17:51 +01:00
|
|
|
// Launch wizard using element registry
|
2026-07-07 10:50:24 +02:00
|
|
|
await waitForElement(page, 'Launch Footprint Wizard');
|
2025-12-30 14:17:51 +01:00
|
|
|
const launchClicked = await clickByLabel(page, 'Launch Footprint Wizard');
|
|
|
|
|
expect(launchClicked, 'Launch Wizard button should be found').toBe(true);
|
|
|
|
|
|
|
|
|
|
// Click Next using element registry
|
2026-07-07 10:50:24 +02:00
|
|
|
await waitForElement(page, 'Next');
|
2025-12-30 14:17:51 +01:00
|
|
|
const nextClicked = await clickByLabel(page, 'Next');
|
|
|
|
|
expect(nextClicked, 'Next button should be found').toBe(true);
|
2026-07-07 10:50:24 +02:00
|
|
|
|
|
|
|
|
// Let the Next page-transition commit before clicking Back (the Back/Next
|
|
|
|
|
// buttons persist across pages, so there is no registry delta to poll on).
|
|
|
|
|
await page.waitForTimeout(200); // eslint-disable-line -- documented interaction dwell
|
2025-12-30 14:17:51 +01:00
|
|
|
|
|
|
|
|
// Click Back using element registry
|
|
|
|
|
const backClicked = await clickByLabel(page, 'Back');
|
|
|
|
|
expect(backClicked, 'Back button should be found and clicked').toBe(true);
|
2025-12-03 17:16:14 +01:00
|
|
|
|
2026-07-07 10:50:24 +02:00
|
|
|
await stableShot(page, 'wizard-04-back-page.png', { fullPage: true });
|
2025-12-03 17:16:14 +01:00
|
|
|
});
|
|
|
|
|
|
2026-07-07 10:50:24 +02:00
|
|
|
test('Wizard can be cancelled', async ({ page }) => {
|
2025-12-03 17:16:14 +01:00
|
|
|
await page.goto('/standalone/wizard/wizard_test.html');
|
2026-07-07 10:50:24 +02:00
|
|
|
await waitForWxApp(page);
|
2025-12-03 17:16:14 +01:00
|
|
|
|
2025-12-30 14:17:51 +01:00
|
|
|
// Launch wizard using element registry
|
2026-07-07 10:50:24 +02:00
|
|
|
await waitForElement(page, 'Launch Footprint Wizard');
|
2025-12-30 14:17:51 +01:00
|
|
|
const launchClicked = await clickByLabel(page, 'Launch Footprint Wizard');
|
|
|
|
|
expect(launchClicked, 'Launch Wizard button should be found').toBe(true);
|
|
|
|
|
|
|
|
|
|
// Click Cancel using element registry
|
2026-07-07 10:50:24 +02:00
|
|
|
await waitForElement(page, 'Cancel');
|
2025-12-30 14:17:51 +01:00
|
|
|
const cancelClicked = await clickByLabel(page, 'Cancel');
|
|
|
|
|
expect(cancelClicked, 'Cancel button should be found and clicked').toBe(true);
|
2025-12-03 17:16:14 +01:00
|
|
|
|
2026-07-07 10:50:24 +02:00
|
|
|
await stableShot(page, 'wizard-05-cancel.png', { fullPage: true });
|
2025-12-03 17:16:14 +01:00
|
|
|
});
|
|
|
|
|
});
|