diff --git a/e2e/pages/modals/ConnectedAccountsModal.js b/e2e/pages/modals/ConnectedAccountsModal.js index 9b2240abbdc..c6a725f70a3 100644 --- a/e2e/pages/modals/ConnectedAccountsModal.js +++ b/e2e/pages/modals/ConnectedAccountsModal.js @@ -37,11 +37,11 @@ export default class ConnectedAccountsModal { } static async tapToSetAsPrimaryAccount() { - await TestHelpers.delay(8000); + // await TestHelpers.delay(8000); if (device.getPlatform() === 'android') { - await TestHelpers.tapByText(messages.accounts.imported);//does not work for iOS + await TestHelpers.tapByText(messages.accounts.imported); //does not work for iOS } else { - await TestHelpers.typeTextAndHideKeyboard(CELL_SELECT_TEST_ID, 1);//not working for android or iOS + await TestHelpers.typeTextAndHideKeyboard(CELL_SELECT_TEST_ID, 1); //not working for android or iOS } await TestHelpers.delay(8000); //waiting for toast message to move out of the way }