2025-11-29 16:19:13 +01:00
|
|
|
// wxMenuBar Tests - Menu system for KiCad
|
2025-11-29 20:54:54 +01:00
|
|
|
import { test, expect, MAIN_CANVAS, tryLoadApp, getCanvasBox } from './utils/fixtures';
|
Migrate tests to use rendered element registry for toolbar, menu, layout, and AUI tests
Update tests to use semantic identifiers instead of hardcoded pixel positions:
- toolbar.spec.ts: Use clickToolbarTool('New') instead of click(box.x + 30, box.y + 45)
- menu.spec.ts: Use clickMenuBarItem('File') instead of click(box.x + 30, box.y + 15)
- layout.spec.ts: Use getSplitterSash() to get actual sash position for drag operations
- aui.spec.ts: Use clickAuiButton('close', 'Properties') for panel button clicks
Also extends element-tracker.ts with:
- WxRenderedElement interface for toolbar tools, menu items, sashes, AUI parts
- findRenderedByLabel(), findRenderedByType() query functions
- clickToolbarTool(), clickMenuBarItem(), getSplitterSash(), clickAuiButton() helpers
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-29 13:06:54 +01:00
|
|
|
import { clickMenuBarItem, findRenderedByType } from './utils/element-tracker';
|
2025-11-29 16:19:13 +01:00
|
|
|
|
|
|
|
|
test.describe('wxMenuBar Tests', () => {
|
|
|
|
|
|
2025-11-29 20:54:54 +01:00
|
|
|
test('Menu test app loads successfully', async ({ page, testLogger }) => {
|
2025-11-29 16:19:13 +01:00
|
|
|
await page.goto('/standalone/menu/menu_test.html');
|
|
|
|
|
const loaded = await tryLoadApp(page);
|
|
|
|
|
|
|
|
|
|
await page.screenshot({ path: 'test-results/menu-01-loaded.png', fullPage: true });
|
|
|
|
|
|
2025-11-29 20:54:54 +01:00
|
|
|
const hasStartupLog = testLogger.consoleLogs.some(l =>
|
|
|
|
|
l.includes('wxMenuBar test app started') || l.includes('Menu test app started')
|
|
|
|
|
);
|
2025-11-29 16:19:13 +01:00
|
|
|
|
|
|
|
|
expect(loaded, 'wxMenuBar app should load successfully').toBe(true);
|
2025-11-29 20:54:54 +01:00
|
|
|
expect(testLogger.errors.filter(e => !e.includes('favicon'))).toHaveLength(0);
|
2025-11-29 16:19:13 +01:00
|
|
|
});
|
|
|
|
|
|
2025-11-29 20:54:54 +01:00
|
|
|
test('Menu bar is visible', async ({ page, testLogger }) => {
|
2025-11-29 16:19:13 +01:00
|
|
|
await page.goto('/standalone/menu/menu_test.html');
|
|
|
|
|
const loaded = await tryLoadApp(page);
|
2026-01-01 20:18:19 +01:00
|
|
|
expect(loaded, 'App should load').toBe(true);
|
2025-11-29 16:19:13 +01:00
|
|
|
|
|
|
|
|
await page.screenshot({ path: 'test-results/menu-02-menubar.png', fullPage: true });
|
|
|
|
|
|
|
|
|
|
// Check that app started with menu bar created
|
2025-11-29 20:54:54 +01:00
|
|
|
const hasMenuBarLog = testLogger.consoleLogs.some(l =>
|
|
|
|
|
l.includes('Menu bar created') || l.includes('Menu test app started')
|
|
|
|
|
);
|
2025-11-29 16:19:13 +01:00
|
|
|
|
|
|
|
|
expect(hasMenuBarLog).toBe(true);
|
|
|
|
|
});
|
|
|
|
|
|
2025-11-29 20:54:54 +01:00
|
|
|
test('File menu can be clicked', async ({ page, testLogger }) => {
|
2025-11-29 16:19:13 +01:00
|
|
|
await page.goto('/standalone/menu/menu_test.html');
|
|
|
|
|
const loaded = await tryLoadApp(page);
|
2026-01-01 20:18:19 +01:00
|
|
|
expect(loaded, 'App should load').toBe(true);
|
2025-11-29 16:19:13 +01:00
|
|
|
|
Migrate tests to use rendered element registry for toolbar, menu, layout, and AUI tests
Update tests to use semantic identifiers instead of hardcoded pixel positions:
- toolbar.spec.ts: Use clickToolbarTool('New') instead of click(box.x + 30, box.y + 45)
- menu.spec.ts: Use clickMenuBarItem('File') instead of click(box.x + 30, box.y + 15)
- layout.spec.ts: Use getSplitterSash() to get actual sash position for drag operations
- aui.spec.ts: Use clickAuiButton('close', 'Properties') for panel button clicks
Also extends element-tracker.ts with:
- WxRenderedElement interface for toolbar tools, menu items, sashes, AUI parts
- findRenderedByLabel(), findRenderedByType() query functions
- clickToolbarTool(), clickMenuBarItem(), getSplitterSash(), clickAuiButton() helpers
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-29 13:06:54 +01:00
|
|
|
// Click on File menu using element registry
|
|
|
|
|
const clicked = await clickMenuBarItem(page, 'File');
|
|
|
|
|
expect(clicked, 'File menu should be found and clicked').toBe(true);
|
2025-11-29 16:19:13 +01:00
|
|
|
await page.waitForTimeout(500);
|
|
|
|
|
|
|
|
|
|
await page.screenshot({ path: 'test-results/menu-03-file-clicked.png', fullPage: true });
|
|
|
|
|
});
|
|
|
|
|
|
2025-11-29 20:54:54 +01:00
|
|
|
test('Edit menu can be clicked', async ({ page, testLogger }) => {
|
2025-11-29 16:19:13 +01:00
|
|
|
await page.goto('/standalone/menu/menu_test.html');
|
|
|
|
|
const loaded = await tryLoadApp(page);
|
2026-01-01 20:18:19 +01:00
|
|
|
expect(loaded, 'App should load').toBe(true);
|
2025-11-29 16:19:13 +01:00
|
|
|
|
Migrate tests to use rendered element registry for toolbar, menu, layout, and AUI tests
Update tests to use semantic identifiers instead of hardcoded pixel positions:
- toolbar.spec.ts: Use clickToolbarTool('New') instead of click(box.x + 30, box.y + 45)
- menu.spec.ts: Use clickMenuBarItem('File') instead of click(box.x + 30, box.y + 15)
- layout.spec.ts: Use getSplitterSash() to get actual sash position for drag operations
- aui.spec.ts: Use clickAuiButton('close', 'Properties') for panel button clicks
Also extends element-tracker.ts with:
- WxRenderedElement interface for toolbar tools, menu items, sashes, AUI parts
- findRenderedByLabel(), findRenderedByType() query functions
- clickToolbarTool(), clickMenuBarItem(), getSplitterSash(), clickAuiButton() helpers
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-29 13:06:54 +01:00
|
|
|
// Click on Edit menu using element registry
|
|
|
|
|
const clicked = await clickMenuBarItem(page, 'Edit');
|
|
|
|
|
expect(clicked, 'Edit menu should be found and clicked').toBe(true);
|
2025-11-29 16:19:13 +01:00
|
|
|
await page.waitForTimeout(500);
|
|
|
|
|
|
|
|
|
|
await page.screenshot({ path: 'test-results/menu-04-edit-clicked.png', fullPage: true });
|
|
|
|
|
});
|
|
|
|
|
|
2025-11-29 20:54:54 +01:00
|
|
|
test('Multiple menus can be accessed', async ({ page, testLogger }) => {
|
2025-11-29 16:19:13 +01:00
|
|
|
await page.goto('/standalone/menu/menu_test.html');
|
|
|
|
|
const loaded = await tryLoadApp(page);
|
2026-01-01 20:18:19 +01:00
|
|
|
expect(loaded, 'App should load').toBe(true);
|
2025-11-29 16:19:13 +01:00
|
|
|
|
Migrate tests to use rendered element registry for toolbar, menu, layout, and AUI tests
Update tests to use semantic identifiers instead of hardcoded pixel positions:
- toolbar.spec.ts: Use clickToolbarTool('New') instead of click(box.x + 30, box.y + 45)
- menu.spec.ts: Use clickMenuBarItem('File') instead of click(box.x + 30, box.y + 15)
- layout.spec.ts: Use getSplitterSash() to get actual sash position for drag operations
- aui.spec.ts: Use clickAuiButton('close', 'Properties') for panel button clicks
Also extends element-tracker.ts with:
- WxRenderedElement interface for toolbar tools, menu items, sashes, AUI parts
- findRenderedByLabel(), findRenderedByType() query functions
- clickToolbarTool(), clickMenuBarItem(), getSplitterSash(), clickAuiButton() helpers
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-29 13:06:54 +01:00
|
|
|
// Verify all menu bar items are registered
|
|
|
|
|
const menuItems = await findRenderedByType(page, 'menuitem', { subType: 'menubar' });
|
|
|
|
|
expect(menuItems.length, 'Should have 5 menu bar items').toBeGreaterThanOrEqual(5);
|
2025-11-29 16:19:13 +01:00
|
|
|
|
Migrate tests to use rendered element registry for toolbar, menu, layout, and AUI tests
Update tests to use semantic identifiers instead of hardcoded pixel positions:
- toolbar.spec.ts: Use clickToolbarTool('New') instead of click(box.x + 30, box.y + 45)
- menu.spec.ts: Use clickMenuBarItem('File') instead of click(box.x + 30, box.y + 15)
- layout.spec.ts: Use getSplitterSash() to get actual sash position for drag operations
- aui.spec.ts: Use clickAuiButton('close', 'Properties') for panel button clicks
Also extends element-tracker.ts with:
- WxRenderedElement interface for toolbar tools, menu items, sashes, AUI parts
- findRenderedByLabel(), findRenderedByType() query functions
- clickToolbarTool(), clickMenuBarItem(), getSplitterSash(), clickAuiButton() helpers
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-29 13:06:54 +01:00
|
|
|
// Click through all menus using element registry
|
|
|
|
|
const menuLabels = ['File', 'Edit', 'View', 'Tools', 'Help'];
|
|
|
|
|
for (const label of menuLabels) {
|
|
|
|
|
const clicked = await clickMenuBarItem(page, label);
|
|
|
|
|
expect(clicked, `Menu "${label}" should be found and clicked`).toBe(true);
|
2025-11-29 16:19:13 +01:00
|
|
|
await page.waitForTimeout(300);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
await page.screenshot({ path: 'test-results/menu-05-all-menus.png', fullPage: true });
|
|
|
|
|
|
2025-11-29 20:54:54 +01:00
|
|
|
expect(testLogger.errors.filter(e => !e.includes('favicon'))).toHaveLength(0);
|
2025-11-29 16:19:13 +01:00
|
|
|
});
|
|
|
|
|
});
|