UNPKG

@testwizard/commands-mobile

Version:

20 lines (14 loc) 564 B
'use strict'; const Commands = require('@testwizard/commands-core'); const Result = Commands.ResultForOkAndErrorMessage; class MultiTouch_PerformCommand extends Commands.CommandBase { constructor(testObject) { super(testObject, 'Mobile.MultiTouch_Perform'); } async execute() { const requestObj = []; const json = await this.executeCommand(requestObj); return new Result(json, 'multiTouch_Perform was successful', 'multiTouch_Perform failed'); } } module.exports = MultiTouch_PerformCommand;