// TODO Some of these properties should be pulled up as they are common for may steps
// FIXME The property names shouldn't be hardcoded
if (event.getSource() == testRequest) {
if (event.getNewValue() instanceof SinglePartHttpResponse) {
SinglePartHttpResponse response = (SinglePartHttpResponse) event.getNewValue();
firePropertyValueChanged("Response", String.valueOf(response), null);
String XMLCOntent = response.getContentAsXml();
firePropertyValueChanged("ResponseAsXml", String.valueOf(XMLCOntent), null);
}
if (event.getPropertyName().equals("domain")) {
delegatePropertyChange("Domain", event);