()
| 3 | |
| 4 | export default class SigningModal { |
| 5 | static async tapSignButton() { |
| 6 | if (device.getPlatform() === 'android') { |
| 7 | await TestHelpers.waitAndTapByLabel(SigningModalSelectorsIDs.SIGN_BUTTON); |
| 8 | } else { |
| 9 | await TestHelpers.waitAndTap(SigningModalSelectorsIDs.SIGN_BUTTON); |
| 10 | } |
| 11 | } |
| 12 | |
| 13 | static async tapCancelButton() { |
| 14 | if (device.getPlatform() === 'android') { |
no test coverage detected