final GeneratedScript script)
throws NodeStepException {
final ExecutionService executionService = context.getFramework().getExecutionService();
if (null != script.getCommand()) {
//execute the command
return executionService.executeCommand(context, script.getCommand(), node);
} else if (null != script.getScript()) {
final String filepath; //result file path
try {
filepath = executionService.fileCopyScriptContent(context, script.getScript(), node);
} catch (FileCopierException e) {