@christian-bromann/webdriverio
Version:
A nodejs bindings implementation for selenium 2.0/webdriver
23 lines (20 loc) • 320 B
JavaScript
/**
*
* Unlock the device.
*
* <example>
:unlockIt.js
browser.unlock()
* </example>
*
* @type mobile
* @for android
*
*/
let unlock = function () {
return this.requestHandler.create({
path: '/session/:sessionId/appium/device/unlock',
method: 'POST'
})
}
export default unlock