fix(editor): Fix opening executions tab from a new, unsaved workflow (#10652)

This commit is contained in:
Csaba Tuncsik
2024-09-04 15:32:03 +02:00
committed by GitHub
parent 746e7b89f7
commit cd0891e4f1
4 changed files with 249 additions and 219 deletions

View File

@@ -7,6 +7,7 @@ export class WorkflowExecutionsTab extends BasePage {
getters = {
executionsTabButton: () => cy.getByTestId('radio-button-executions'),
executionsSidebar: () => cy.getByTestId('executions-sidebar'),
executionsEmptyList: () => cy.getByTestId('execution-list-empty'),
autoRefreshCheckBox: () => cy.getByTestId('auto-refresh-checkbox'),
executionsList: () => cy.getByTestId('current-executions-list'),
executionListItems: () => this.getters.executionsList().find('div.execution-card'),