webdriverio-workflo
Version:
This is a customized version of webdriverio for use with workflo framework.
44 lines (39 loc) • 1.14 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = settings;
/**
*
* Either retrieve a JSON hash of all the currently specified settings or update the current setting on the device.
*
* <example>
:settings.js
it('should update/get settings on the device', function () {
// update setting on the device
browser.settings({ cyberdelia: 'open' });
// get current settings
var settings = browser.settings()
console.log(settings.cyberdelia); // returns 'open'
});
* </example>
*
* @type mobile
* @param {Object=} settings key/value pairs defining settings on the device
* @return {Object} current settings (only if method was called without parameters)
*
*/
function settings(settings) {
var settingsRoute = '/session/:sessionId/appium/settings';
/**
* get current settings
*/
if (!settings) {
return this.requestHandler.create(settingsRoute);
}
return this.requestHandler.create({
path: settingsRoute,
method: 'POST'
}, { settings });
}
module.exports = exports['default'];
;