mirror of
https://github.com/langgenius/dify.git
synced 2026-07-21 18:58:35 +08:00
9 lines
268 B
TypeScript
9 lines
268 B
TypeScript
import type { Page } from '@playwright/test'
|
|
import { expect } from '@playwright/test'
|
|
|
|
export async function waitForAgentConfigureAutosaved(page: Page) {
|
|
await expect(
|
|
page.getByRole('status', { name: /Saved/i }).first(),
|
|
).toBeVisible({ timeout: 30_000 })
|
|
}
|