UNPKG

@testwizard/commands-mobile

Version:

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