diff --git a/NOTICE.txt b/NOTICE.txt index 6bc520539e946..c0646243c49f3 100644 --- a/NOTICE.txt +++ b/NOTICE.txt @@ -1,5 +1,5 @@ Kibana source code with Kibana X-Pack source code -Copyright 2012-2025 Elasticsearch B.V. +Copyright 2012-2026 Elasticsearch B.V. --- Adapted from remote-web-worker, which was available under a "MIT" license. diff --git a/src/platform/test/functional/page_objects/index_editor.ts b/src/platform/test/functional/page_objects/index_editor.ts index 4c43c70badee4..851ea182a82fd 100644 --- a/src/platform/test/functional/page_objects/index_editor.ts +++ b/src/platform/test/functional/page_objects/index_editor.ts @@ -64,7 +64,9 @@ export class IndexEditorObject extends FtrService { public async setCellValue(rowIndex: number, columnIndex: number, value: string): Promise { await this.testSubjects.click(`indexEditorCellValue-${rowIndex}-${columnIndex}`); - await this.testSubjects.setValue('indexEditorCellValueInput', value); + const input = await this.testSubjects.find('indexEditorCellValueInput'); + await input.clearValueWithKeyboard(); + await input.type(value, { charByChar: true }); await this.common.pressEnterKey(); }