mirror of
https://github.com/langgenius/dify.git
synced 2026-07-23 20:18:40 +08:00
42 lines
1.5 KiB
TypeScript
42 lines
1.5 KiB
TypeScript
import type { DifyWorld } from '../../support/world'
|
|
import { Then, When } from '@cucumber/cucumber'
|
|
import { expect } from '@playwright/test'
|
|
import { waitForAppsConsole } from '../../../support/apps'
|
|
import { waitForConsoleHome } from '../../../support/home'
|
|
|
|
When('I open the default console entry', async function (this: DifyWorld) {
|
|
await this.getPage().goto('/')
|
|
})
|
|
|
|
When('I open the apps console', async function (this: DifyWorld) {
|
|
await this.getPage().goto('/apps')
|
|
})
|
|
|
|
When('I refresh the current page', async function (this: DifyWorld) {
|
|
await this.getPage().reload()
|
|
})
|
|
|
|
Then('I should stay on the apps console', async function (this: DifyWorld) {
|
|
await waitForAppsConsole(this.getPage())
|
|
})
|
|
|
|
Then('I should be on the console home', async function (this: DifyWorld) {
|
|
await waitForConsoleHome(this.getPage())
|
|
})
|
|
|
|
Then('I should be redirected to the signin page', async function (this: DifyWorld) {
|
|
await expect(this.getPage()).toHaveURL(/\/signin(?:\?.*)?$/)
|
|
})
|
|
|
|
Then('I should see the {string} button', async function (this: DifyWorld, label: string) {
|
|
await expect(this.getPage().getByRole('button', { name: label })).toBeVisible()
|
|
})
|
|
|
|
Then('I should not see the {string} button', async function (this: DifyWorld, label: string) {
|
|
await expect(this.getPage().getByRole('button', { name: label })).not.toBeVisible()
|
|
})
|
|
|
|
Then('I should see the {string} text', async function (this: DifyWorld, text: string) {
|
|
await expect(this.getPage().getByText(text)).toBeVisible({ timeout: 30_000 })
|
|
})
|