n8n/packages/testing/playwright/pages/ExecutionsPage.ts
Declan Carroll f96cdb17db
Some checks are pending
CI: Master (Build, Test, Lint) / Build for Github Cache (push) Waiting to run
CI: Master (Build, Test, Lint) / Unit tests (22.x) (push) Waiting to run
CI: Master (Build, Test, Lint) / Unit tests (24.14.1) (push) Waiting to run
CI: Master (Build, Test, Lint) / Unit tests (25.x) (push) Waiting to run
CI: Master (Build, Test, Lint) / Lint (push) Waiting to run
CI: Master (Build, Test, Lint) / Performance (push) Waiting to run
CI: Master (Build, Test, Lint) / Notify Slack on failure (push) Blocked by required conditions
test: Resolve 20 janitor scope-lockdown and dead-code violations (#27948)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-02 17:32:27 +00:00

129 lines
3.4 KiB
TypeScript

import type { Locator } from '@playwright/test';
import { BasePage } from './BasePage';
import { LogsPanel } from './components/LogsPanel';
export class ExecutionsPage extends BasePage {
async goto(projectId?: string) {
const url = projectId ? `/projects/${projectId}/executions` : '/home/executions';
await this.page.goto(url);
}
readonly logsPanel = new LogsPanel(this.getPreviewIframe().getByTestId('logs-panel'));
async clickDebugInEditorButton(): Promise<void> {
await this.clickButtonByName('Debug in editor');
}
async clickCopyToEditorButton(): Promise<void> {
await this.clickButtonByName('Copy to editor');
}
getExecutionItems(): Locator {
return this.page.locator('div.execution-card');
}
getLastExecutionItem(): Locator {
const executionItems = this.getExecutionItems();
return executionItems.nth(0);
}
getAutoRefreshButton() {
return this.page.getByTestId('auto-refresh-checkbox');
}
getPreviewIframe() {
return this.page.getByTestId('workflow-preview-iframe').contentFrame();
}
async clickLastExecutionItem(): Promise<void> {
const executionItem = this.getLastExecutionItem();
await executionItem.click();
}
/**
* Handle the pinned nodes confirmation dialog.
* @param action - The action to take.
*/
async handlePinnedNodesConfirmation(action: 'Unpin' | 'Cancel'): Promise<void> {
await this.page.getByRole('button', { name: action }).click();
}
getExecutionsList(): Locator {
return this.page.getByTestId('current-executions-list');
}
getExecutionsSidebar(): Locator {
return this.page.getByTestId('executions-sidebar');
}
getExecutionsEmptyList(): Locator {
return this.page.getByTestId('execution-list-empty');
}
getSuccessfulExecutionItems(): Locator {
return this.page.locator('[data-test-execution-status="success"]');
}
getFailedExecutionItems(): Locator {
return this.page.locator('[data-test-execution-status="error"]');
}
/**
* Scroll the executions list to the bottom to trigger lazy loading
*/
async scrollExecutionsListToBottom(): Promise<void> {
await this.getExecutionsList().evaluate((el) => el.scrollTo(0, el.scrollHeight));
}
/**
* Get error notifications in the preview iframe
*/
getErrorNotificationsInPreview(): Locator {
return this.getPreviewIframe().locator('.el-notification:has(.el-notification--error)');
}
getFirstExecutionItem(): Locator {
return this.getExecutionItems().first();
}
async deleteExecutionInPreview(): Promise<void> {
await this.page.getByTestId('execution-preview-delete-button').click();
await this.page.locator('button.btn--confirm').click();
}
// Filter methods
getFilterButton(): Locator {
return this.page.getByTestId('executions-filter-button');
}
getFilterForm(): Locator {
return this.page.getByTestId('execution-filter-form');
}
getStatusSelect(): Locator {
return this.page.getByTestId('executions-filter-status-select');
}
async openFilter(): Promise<void> {
await this.getFilterButton().click();
}
getFilterBadge(): Locator {
return this.page.getByTestId('execution-filter-badge');
}
getFilterResetButton(): Locator {
return this.page.getByTestId('executions-filter-reset-button');
}
async resetFilter(): Promise<void> {
await this.getFilterResetButton().click();
}
async selectFilterStatus(status: string): Promise<void> {
await this.getStatusSelect().getByRole('combobox').click();
await this.page.getByRole('option', { name: status }).click();
}
}