fix(editor): Keep chat session when switching to other tabs (#19483)

This commit is contained in:
Mutasem Aldmour
2025-09-15 15:31:03 +02:00
committed by GitHub
parent 5a63304014
commit 7e63e56ccd
7 changed files with 133 additions and 45 deletions

View File

@@ -207,6 +207,11 @@ export class CanvasPage extends BasePage {
async clickExecutionsTab(): Promise<void> {
await this.page.getByRole('radio', { name: 'Executions' }).click();
}
async clickEditorTab(): Promise<void> {
await this.page.getByRole('radio', { name: 'Editor' }).click();
}
async setWorkflowName(name: string): Promise<void> {
await this.clickByTestId('inline-edit-preview');
await this.fillByTestId('inline-edit-input', name);