Home > Mobile >  Download Test Run Results from Azure DevOps
Download Test Run Results from Azure DevOps

Time:12-07

We are using the Azure DevOps Test Plan module for our manual testing. We have a Test Plan, under which, we have Test Suite, under which we have Test Cases that are assigned to different Testers. Testers use ADO to mark a Test Case outcome as passed or fail.

We want to download the Test Case outcome/results, but I don't see that option. We have a Test Run tab under Test Plan which shows all Run outcomes but doesn't give the option to download.

CodePudding user response:

You could Export the test plan properties, test suite properties along with details of the test cases and test points as either an email or print to pdf by using the Export function of the test suite: enter image description here

enter image description here

enter image description here

CodePudding user response:

I am afraid that there is no out-of-box method can directly export the test results of test runs to excel.

To meet your requirement, you can use Rest API to list all required test runs and test results. Then you can export them to Excel.

You can use the following two Rest APIs:

Get Test Runs: enter image description here

  • Related