Skip to content

Commit b6cb054

Browse files
author
Lee Drengenberg
authored
replaced RIGHT and BACK_SPACE with DELETE
1 parent fbe9826 commit b6cb054

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

test/functional/page_objects/settings_page.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -395,8 +395,7 @@ export function SettingsPageProvider({ getService, getPageObjects }: FtrProvider
395395
await field.type(indexPatternName, { charByChar: true });
396396
const tempName = await field.getAttribute('value');
397397
if (tempName.length > indexPatternName.length) {
398-
await field.type(browser.keys.RIGHT, { charByChar: true });
399-
await field.type(browser.keys.BACK_SPACE, { charByChar: true });
398+
await field.type(browser.keys.DELETE, { charByChar: true });
400399
}
401400
}
402401
const currentName = await field.getAttribute('value');

0 commit comments

Comments
 (0)