mirror of
https://github.com/jwetzell/showbridge-webui.git
synced 2026-08-09 16:43:40 +00:00
8 lines
254 B
TypeScript
8 lines
254 B
TypeScript
import { expect, test } from '@playwright/test';
|
|
|
|
test('add module', async ({ page }) => {
|
|
await page.goto('/');
|
|
await page.locator('app-module-list').getByText('add').click();
|
|
await page.getByRole('menuitem', { name: 'HTTP Server' }).click();
|
|
});
|