n8n/packages/testing/playwright/pages/components/AIBuilderPage.ts
2026-04-28 08:11:20 +00:00

63 lines
1.6 KiB
TypeScript

import { expect, type Page } from '@playwright/test';
import { BuilderSetupWizard } from './BuilderSetupWizard';
/**
* Page object for AI Workflow Builder interactions
*/
export class AIBuilderPage {
readonly page: Page;
readonly wizard: BuilderSetupWizard;
constructor(page: Page) {
this.page = page;
this.wizard = new BuilderSetupWizard(page);
}
// #region Locators
getWorkflowSuggestions() {
return this.page.getByTestId('workflow-suggestions');
}
getCanvasChoicePrompt() {
return this.page.getByTestId('canvas-choice-prompt');
}
getSuggestionPills() {
// Get buttons within the pills container section, not the prompt input section
return this.getWorkflowSuggestions()
.locator('section[aria-label="Workflow suggestions"]')
.getByRole('button');
}
getCanvasBuildWithAIButton() {
return this.page.getByTestId('canvas-build-with-ai-button');
}
// #endregion
// #region Actions
async waitForCanvasBuildEntry() {
const buildButton = this.getCanvasBuildWithAIButton();
await expect(this.getCanvasChoicePrompt()).toBeVisible();
await expect(buildButton).toBeVisible();
await expect(buildButton).toBeEnabled();
}
async waitForWorkflowBuildComplete(options?: { timeout?: number }) {
const timeout = options?.timeout ?? 300000; // Default 5 minutes
const workingIndicator = this.page.getByText('Working...');
// First wait for the indicator to appear (building has started)
await workingIndicator.waitFor({ state: 'visible', timeout });
// Then wait for it to disappear (building is complete)
await workingIndicator.waitFor({ state: 'hidden', timeout });
}
// #endregion
}