()
| 12 | } |
| 13 | |
| 14 | static async tapNextButton() { |
| 15 | if (device.getPlatform() === 'ios') { |
| 16 | await TestHelpers.waitAndTap( |
| 17 | SendViewSelectorsIDs.ADDRESS_BOOK_NEXT_BUTTON, |
| 18 | ); |
| 19 | } else { |
| 20 | await TestHelpers.waitAndTapByLabel( |
| 21 | SendViewSelectorsIDs.ADDRESS_BOOK_NEXT_BUTTON, |
| 22 | ); |
| 23 | } |
| 24 | } |
| 25 | static async inputAddress(address) { |
| 26 | await TestHelpers.replaceTextInField(SEND_ADDRESS_INPUT_FIELD, address); |
| 27 | } |
no test coverage detected