* Check whether the device is not locked. * * ```js * I.seeDeviceIsUnlocked(); * ``` * * @return {Promise } * * Appium: support only Android
()
| 716 | * Appium: support only Android |
| 717 | */ |
| 718 | async seeDeviceIsUnlocked() { |
| 719 | onlyForApps.call(this, supportedPlatform.android) |
| 720 | const res = await this.browser.isLocked() |
| 721 | return truth('device', 'to be locked').negate(res) |
| 722 | } |
| 723 | |
| 724 | /** |
| 725 | * Check the device orientation |
no test coverage detected