HttpRequestConfig httpRequest = HttpRequestConfig.Factory.newInstance();
httpRequest.setMethod( HttpMethodType.GET.toString() );
httpRequest.setEndpoint( endpoint );
TestStepConfig testStepConfig = TestStepConfig.Factory.newInstance();
testStepConfig.setType( HttpRequestStepFactory.HTTPREQUEST_TYPE );
testStepConfig.setConfig( httpRequest );
testStepConfig.setName( name );
HttpTestRequestStep testStep = ( HttpTestRequestStep )targetTestCase.addTestStep( testStepConfig );
desktopPanel = ( HttpTestRequestDesktopPanel )UISupport.selectAndShow( testStep );
HttpTestRequest testRequest = null;
try