How to update the Test Step status using the SpiraImportExport webservice reference

Friday, November 30, 2012
Avatar
//to retrieve list of test cases
                RemoteTestCase[] rtcList = spiraExport.TestCase_RetrieveByTestSetId(automatedTestRun.TestSetId.Value);
                int? a = rtcList[0].TestCaseId;
                int b = a.Value;
                //RemoteTestStep[] rtst =  rtcList[0].TestSteps ;
                try
                {
                    RemoteTestCase remoteTestCase = spiraExport.TestCase_RetrieveById(b);
                    RemoteTestStep[] remoteTestSteps = remoteTestCase.TestSteps;
                    Thread.Sleep(1000);
                    //RemoteTestStep [] rtStep = Remote
                       
                    //int a = rtst[0].TestStepId.Value;
                }
                catch (Exception)
                {

                    Thread.Sleep(1000);
                }
1 Replies
Friday, November 30, 2012
Avatar
re: satyabratasaha Friday, November 30, 2012

Hi SpiraTest Support,

I would like to know, how can I update the status of a Test Step inside a Test Case using the webserice reference.

Currently I am able to get the list of test steps in a test case and its associated atributes like Test StepID , Test StepDescription ,etc.

//to retrieve list of test cases
                RemoteTestCase[] rtcList = spiraExport.TestCase_RetrieveByTestSetId(automatedTestRun.TestSetId.Value);
                int? a = rtcList[0].TestCaseId;
                int b = a.Value;
                //RemoteTestStep[] rtst =  rtcList[0].TestSteps ;
                try
                {
                    RemoteTestCase remoteTestCase = spiraExport.TestCase_RetrieveById(b);
                    RemoteTestStep[] remoteTestSteps = remoteTestCase.TestSteps;
                }
                catch (Exception)
                {

                    throw;
                }

Any help is appreciated.

Thanks,
Satyabrata Saha

Spira Helps You Deliver Quality Software, Faster and With Lower Risk

And if you have any questions, please email or call us at +1 (202) 558-6885

 

Statistics
  • Started: Friday, November 30, 2012
  • Last Reply: Friday, November 30, 2012
  • Replies: 1
  • Views: 1748