webdriverio-workflo
Version:
This is a customized version of webdriverio for use with workflo framework.
28 lines (26 loc) • 563 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = closeApp;
/**
*
* Close the given application.
*
* <example>
:closeApp.js
browser.closeApp()
* </example>
*
* @see https://github.com/appium/appium/blob/master/docs/en/writing-running-appium/other/appium-bindings.md#close-app
* @type mobile
* @for ios
*
*/
function closeApp() {
return this.requestHandler.create({
path: '/session/:sessionId/appium/app/close',
method: 'POST'
});
}
module.exports = exports['default'];
;