mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
7ce5d8fd90
Supersedes https://github.com/n8n-io/n8n/pull/6937 Excluding fixtures and test workflow JSONs to avoid having to update tests.
46 lines
1.9 KiB
TypeScript
46 lines
1.9 KiB
TypeScript
import { BasePage } from './base';
|
|
import { WorkflowPage } from './workflow';
|
|
|
|
const workflowPage = new WorkflowPage();
|
|
|
|
export class WorkflowExecutionsTab extends BasePage {
|
|
getters = {
|
|
executionsTabButton: () => cy.getByTestId('radio-button-executions'),
|
|
executionsSidebar: () => cy.getByTestId('executions-sidebar'),
|
|
autoRefreshCheckBox: () => cy.getByTestId('auto-refresh-checkbox'),
|
|
executionsList: () => cy.getByTestId('current-executions-list'),
|
|
executionListItems: () => this.getters.executionsList().find('div.execution-card'),
|
|
successfulExecutionListItems: () => cy.get('[data-test-execution-status="success"]'),
|
|
failedExecutionListItems: () => cy.get('[data-test-execution-status="error"]'),
|
|
executionCard: (executionId: string) => cy.getByTestId(`execution-details-${executionId}`),
|
|
executionPreviewDetails: () => cy.get('[data-test-id^="execution-preview-details-"]'),
|
|
executionPreviewDetailsById: (executionId: string) =>
|
|
cy.getByTestId(`execution-preview-details-${executionId}`),
|
|
executionPreviewTime: () =>
|
|
this.getters.executionPreviewDetails().find('[data-test-id="execution-time"]'),
|
|
executionPreviewStatus: () =>
|
|
this.getters.executionPreviewDetails().find('[data-test-id="execution-preview-label"]'),
|
|
executionPreviewId: () =>
|
|
this.getters.executionPreviewDetails().find('[data-test-id="execution-preview-id"]'),
|
|
};
|
|
actions = {
|
|
toggleNodeEnabled: (nodeName: string) => {
|
|
workflowPage.getters.canvasNodeByName(nodeName).click();
|
|
cy.get('body').type('d', { force: true });
|
|
},
|
|
createManualExecutions: (count: number) => {
|
|
for (let i = 0; i < count; i++) {
|
|
cy.intercept('POST', '/rest/workflows/run').as('workflowExecution');
|
|
workflowPage.actions.executeWorkflow();
|
|
cy.wait('@workflowExecution');
|
|
}
|
|
},
|
|
switchToExecutionsTab: () => {
|
|
this.getters.executionsTabButton().click();
|
|
},
|
|
switchToEditorTab: () => {
|
|
workflowPage.getters.editorTabButton().click();
|
|
},
|
|
};
|
|
}
|