()
| 36 | const validAccount = Accounts.getValidAccount(); |
| 37 | |
| 38 | export const acceptTermOfUse = async () => { |
| 39 | // tap on accept term of use screen |
| 40 | await TestHelpers.delay(3500); |
| 41 | await TermsOfUseModal.isDisplayed(); |
| 42 | await TermsOfUseModal.tapScrollEndButton(); |
| 43 | await TermsOfUseModal.tapAgreeCheckBox(); |
| 44 | await TestHelpers.delay(3500); |
| 45 | await TermsOfUseModal.tapAcceptButton(); |
| 46 | await TermsOfUseModal.isNotDisplayed(); |
| 47 | }; |
| 48 | |
| 49 | export const importWalletWithRecoveryPhrase = async () => { |
| 50 | // tap on import seed phrase button |
no test coverage detected