mirror of
https://github.com/langgenius/dify.git
synced 2026-08-24 12:32:54 -04:00
21 lines
791 B
TypeScript
21 lines
791 B
TypeScript
import type { Page } from '@playwright/test'
|
|
import { expect } from '@playwright/test'
|
|
|
|
const getExpectOptions = (timeout?: number) => (timeout === undefined ? undefined : { timeout })
|
|
|
|
export const waitForAgentsConsole = async (page: Page, timeout?: number) => {
|
|
const options = getExpectOptions(timeout)
|
|
|
|
await expect(page).toHaveURL(/\/agents(?:\?.*)?$/, options)
|
|
await expect(page.getByRole('link', { name: 'Agents', exact: true })).toHaveAttribute(
|
|
'aria-current',
|
|
'page',
|
|
options,
|
|
)
|
|
await expect(page.getByRole('heading', { name: 'Agents', exact: true })).toBeVisible(options)
|
|
|
|
const roster = page.getByRole('region', { name: 'Agent list' })
|
|
await expect(roster).toBeVisible(options)
|
|
await expect(roster).not.toHaveAttribute('aria-busy', 'true', options)
|
|
}
|