webdriverio-workflo
Version:
This is a customized version of webdriverio for use with workflo framework.
27 lines (25 loc) • 491 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = toggleWiFi;
/**
*
* Switch the state (enabled/disabled) of the wifi service.
*
* <example>
:toggleWiFi.js
client.toggleWiFi()
* </example>
*
* @type mobile
* @for android
*
*/
function toggleWiFi() {
return this.requestHandler.create({
path: '/session/:sessionId/appium/device/toggle_wifi',
method: 'POST'
});
}
module.exports = exports['default'];
;