appletPluginArguments.setAppletTag(extractAppletParameter(currentResponse.getWebResponse().getRequestUrl(), appletNode));
return appletPluginArguments;
}
AppletPluginArguments createAppletPluginArguments() {
final WebtestTask webtest = getContext().getWebtest();
final AppletPluginArguments appletPluginArguments = new AppletPluginArguments();
final StringBuffer sb = new StringBuffer(webtest.getName());
sb.append(getDescription(" - ", ""));
appletPluginArguments.setBaseWindowName(sb.toString());
appletPluginArguments.setSaveResponse(webtest.getConfig().isSaveResponse());
appletPluginArguments.setSaveDirectory(webtest.getConfig().getWebTestResultDir());
appletPluginArguments.setOutputFile(createTempFile(".output"));
appletPluginArguments.setScenarioLocation(convertPathToURL(fScenarioLocationPath));
appletPluginArguments.setScenario(fScenario);
for (Iterator iterator = getParameters(); iterator.hasNext();) {
appletPluginArguments.addArgument((Parameter) iterator.next());