|
import { expect, test } from '@playwright/test'; |
|
|
|
test.describe('Endpoints Presets suite', () => { |
|
test('Endpoints Suite', async ({ page }) => { |
|
await page.goto('http://localhost:3080/'); |
|
await page.getByRole('button', { name: 'New Topic' }).click(); |
|
|
|
|
|
const endpointItem = await page.getByRole('menuitemradio', { name: 'ChatGPT OpenAI' }); |
|
await endpointItem.click(); |
|
|
|
await page.getByRole('button', { name: 'New Topic' }).click(); |
|
|
|
expect(await endpointItem.getAttribute('class')).toContain('active'); |
|
}); |
|
}); |
|
|