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(); }