UNPKG

@testim/testim-cli

Version:

Command line interface for running Testing on you CI

23 lines (19 loc) 441 B
/** * * Toggle location services on device. * * <example> :toggleLocationServicesOnDevice.js client.toggleLocationServicesOnDevice(); * </example> * * @type appium * */ module.exports = function toggleLocationServicesOnDevice() { var requestOptions = { path: '/session/:sessionId/appium/device/toggle_location_services', method: 'POST' }; return this.requestHandler.create(requestOptions); };