UNPKG

@testwizard/commands-mobile

Version:

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