ContributionsMost RecentMost LikesSolutionsRe: Not able to add teststep Just an update from the support ticket . The testcase needs to have the same amount of steps as test run . So , in my case the testcase had only one step and hence it was only updating one step. For test run to have multiple steps, first the testcase needs to have the same number of step Re: Not able to add teststep I am afraid but this approach also does not help . Its ends up adding no steps in the final results and add 2 runs for the same testcase . So , to summarise I am using the endpoint /testrun/{testRunKey}/testresults and want to have each entry under the "scriptResults" section shown in final results but only index 0 is updated . This means that I can only upload result of one test step to the final status. The JSON body in the original query as per the API documentation (https://support.smartbear.com/zephyr-scale-server/api-docs/v1/) . This seems to be defect according to me as I am not able to upload the complete results to Zephyr unless I am doing something wrong here . Re: Not able to add teststep Hi Andy , of course I am adding the mandatory fields . I have updated my message to avoid any confusion there Re: Not able to add teststep Thanks for the answer but my problem is that only index 0 is updated in the final results . index 1 is siliently ignored . I also tried the endpoint suggested by you . [ { "status": "Pass", "testCaseKey": "TTT-T84", "comment": "The test has failed on some automation tool procedure.", "executionTime": 180000, "executedBy": "tomation01", "assignedTo": "tomation01", "actualStartDate": "2016-02-14T19:22:00-0300", "actualEndDate": "2016-02-15T19:22:00-0300", "scriptResults": [ { "index": 0, "status": "Pass", "comment": "This step has pass." }, { "index": 1, "status": "Pass", "comment": "This step has failed." }, { "index": 2, "status": "Pass", "comment": "This step has failed." } ] } ] Re: Not able to add teststep Any update on my query would be much appreciated ? Is there any known limitation here ? Not able to add teststep Hi , I am not able to add multiple teststeps using the REST endpoint /testresult I am sending the below sample body but I only see the index 0 on the webpage [ { "status": "Pass", "testCaseKey": "TTT-T84", "comment": "The test has failed on some automation tool procedure.", "executionTime": 180000, "executedBy": "tomation01", "assignedTo": "tomation01", "actualStartDate": "2016-02-14T19:22:00-0300", "actualEndDate": "2016-02-15T19:22:00-0300", "scriptResults": [ { "index": 0, "status": "Pass", "comment": "This step has pass." }, { "index": 1, "status": "Pass", "comment": "This step has failed." }, { "index": 2, "status": "Pass", "comment": "This step has failed." } ] } ] JUnit Integration with gradle Hi , The would like to import the Junit test results to Zephyr. Is there an alternative to register the Zephyr Scale JUnit Listener in gradle project ? https://support.smartbear.com/zephyr-scale-server/docs/test-automation/integrations/junit.html Thanks, Saju Gherkin script does not allow save with AND keyword Hi , Working with Zephyr Scale - version 8.0.3 . When I trying saving the script 'AND' keyword . I get below error even though its a supported keyword. Can someone please help . The following fields are invalid: BDD Script (Test Script tab) : Invalid syntax. Get online help about BDD - Gherkin scripts. Solved