Skip to content

Commit

Permalink
replaced RIGHT and BACK_SPACE with DELETE
Browse files Browse the repository at this point in the history
  • Loading branch information
Lee Drengenberg committed Apr 29, 2020
1 parent fbe9826 commit b6cb054
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/functional/page_objects/settings_page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -395,8 +395,7 @@ export function SettingsPageProvider({ getService, getPageObjects }: FtrProvider
await field.type(indexPatternName, { charByChar: true });
const tempName = await field.getAttribute('value');
if (tempName.length > indexPatternName.length) {
await field.type(browser.keys.RIGHT, { charByChar: true });
await field.type(browser.keys.BACK_SPACE, { charByChar: true });
await field.type(browser.keys.DELETE, { charByChar: true });
}
}
const currentName = await field.getAttribute('value');
Expand Down

0 comments on commit b6cb054

Please sign in to comment.