Files
enviPy-bayer/static/js/ketcher2/node_modules/webdriverio/lib/protocol/toggleLocationServices.js
2025-06-23 20:13:54 +02:00

21 lines
413 B
JavaScript

/**
*
* Switch the state (enabled/disabled) of the location service.
*
* <example>
:toggleLocationServices.js
browser.toggleLocationServices();
* </example>
*
* @type mobile
* @for android
*
*/
export default function toggleLocationServices () {
return this.requestHandler.create({
path: '/session/:sessionId/appium/device/toggle_location_services',
method: 'POST'
})
}