mirror of
https://github.com/jwetzell/showbridge-webui.git
synced 2026-07-26 10:08:40 +00:00
7 lines
257 B
TypeScript
7 lines
257 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();
|
|
}) |