return res;
}
private TestSpecification parseTestSpecification(IXMLElement elem)
throws TestSpecificationException {
RunMode runMode = RunMode.valueOf(
extractAttribute(elem, "runMode", RunMode.AS_CLASS.name()));
String title = extractAttribute(elem, "title");
String command = extractAttribute(elem, "command", null);
String scriptContent = extractElementValue(elem, "script", "");
String inputContent = extractElementValue(elem, "input", "");