Download execution report filtered by ExecutionID using REST API call

If you want to be able to automate the process of downloading a report containing summarized list of your executions for a test run and their results (also called Execution Summary or executions report) in PDF via REST API and if you have been wondering how to do it, this article is for you. For presentation purposes I have used Postman. Below in this article you can find more useful information in related articles.

Please do not forget to hit the “Like” button if you found what you have been searching for. Thank you in advance! 

Before you begin:

This article is based on usage of a single Execution ID (External ID). If you want to know to obtain it, follow this article.

Step-by-step Guide

  1. The following HTTP GET command is used to download the executions report:

    Copy
    https://<myCloud>.reporting.perfectomobile.com/export/api/v1/test-executions/pdf
  2. You add the externalId[0] Parameter with a value you can obtain from the testrun itself by using the following line:

    Copy
    String externalId = (String) driver.getCapabilities().getCapability("executionId");
    System.out.println("executionId: " + externalId);
    Note:

    You can crosscheck if you have taken the correct ID by opening the report details in the reporting tool:

  3. Add the following header parameters to the request:

    Name

    Value

    PERFECTO_AUTHORIZATION

    <Your personal security token>

  4. Run it and you should receive such result:

  5. Download the output:

  6. Find the needed file and note that it doesn’t have an extension:

  7. Rename the file by typing “.pdf” at the end of the file:

  8. Open the file and there you will find all the desired result: