webdriverio-workflo
Version:
This is a customized version of webdriverio for use with workflo framework.
27 lines (24 loc) • 760 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = performMultiAction;
/**
*
* Perform multi touch action
*
* @param {Object} touchAttr contains attributes of touch gesture (e.g. `element`, `x` and `y`)
*
* @see https://github.com/appium/appium/blob/master/docs/en/writing-running-appium/other/appium-bindings.md#touchaction--multitouchaction
* @type mobile
* @for android, ios
*
*/
function performMultiAction() {
var multiTouchAction = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
return this.requestHandler.create({
path: '/session/:sessionId/touch/multi/perform',
method: 'POST'
}, multiTouchAction);
}
module.exports = exports['default'];
;