isLocked
Check whether the device screen is locked.
Note: Falls back to the deprecated Appium 2 protocol endpoint if the driver does not support the
mobile:execute method.
Usage
browser.isLocked()
Example
isLocked.js
it('should check if the device is locked', async () => {
const locked = await browser.isLocked()
console.log('Device is locked:', locked)
})
Returns
- <
Promise<boolean>>returns:trueif the device is locked,falseotherwise
Support
note
Refer to the official Appium driver documentation to see which driver versions support this command.