mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-02 14:27:40 +00:00
## Summary Retries the widget value change check for up to 2 whole seconds. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-7389-Fix-remoteWidgets-Playwright-test-add-retry-for-assertion-2c66d73d3650814e98b6fdfc83f6d3d6) by [Unito](https://www.unito.io)
46 lines
1.2 KiB
TypeScript
46 lines
1.2 KiB
TypeScript
import type { Locator, Page } from '@playwright/test'
|
|
import { expect } from '@playwright/test'
|
|
import path from 'path'
|
|
|
|
import type {
|
|
TemplateInfo,
|
|
WorkflowTemplates
|
|
} from '../../src/platform/workflow/templates/types/template'
|
|
|
|
export class ComfyTemplates {
|
|
readonly content: Locator
|
|
readonly allTemplateCards: Locator
|
|
|
|
constructor(readonly page: Page) {
|
|
this.content = page.getByTestId('template-workflows-content')
|
|
this.allTemplateCards = page.locator('[data-testid^="template-workflow-"]')
|
|
}
|
|
|
|
async waitForMinimumCardCount(count: number) {
|
|
return await expect(async () => {
|
|
const cardCount = await this.allTemplateCards.count()
|
|
expect(cardCount).toBeGreaterThanOrEqual(count)
|
|
}).toPass({
|
|
timeout: 1_000
|
|
})
|
|
}
|
|
|
|
async loadTemplate(id: string) {
|
|
await this.content
|
|
.getByTestId(`template-workflow-${id}`)
|
|
.getByRole('img')
|
|
.click()
|
|
}
|
|
|
|
async getAllTemplates(): Promise<TemplateInfo[]> {
|
|
const templates: WorkflowTemplates[] = await this.page.evaluate(() =>
|
|
window['app'].api.getCoreWorkflowTemplates()
|
|
)
|
|
return templates.flatMap((t) => t.templates)
|
|
}
|
|
|
|
getTemplatePath(filename: string): string {
|
|
return path.join('public', 'templates', filename)
|
|
}
|
|
}
|