Test results

In the Results tab, you can view the results of your tests from within OpenText Functional Testing Lab.

View test details

In the test results list, you can view summary details for your tests. These details include the test duration and the testing tool used to run the test. Use the filter pane to focus on the information that is important to you.

To view more test details:

  • Select the test. The Details pane of the test displays general information, device details, app information, and test session artifacts (logs and video recordings).
    OpenText Core SDP only: The status of the test is displayed together with any status comments.

  • If logs or a video recording are available, you can download these artifacts. For more details on how to enable video recording in Selenium and Appium tests, see Browser lab and Appium Capabilities. To include OpenText Functional testing logs for a test, logs should be selected in Test Options. For more details, see Lab wizard.

OpenText Core SDP only:

  • You can view the status of Appium and Selenium tests: Passed; Failed; or Not Available. You can filter the results list by test status or by text in the status comment. To report test status to the lab from your Appium/ Selenium test, define a map (Java) or dictionary (C#) with the attributes status and comment. Use the executeScript API to set the status and comments during testing. Comments can be information related to the test failure, for example, the test execution message.

    Java example

    Copy code
    Map<String, String> status = new HashMap<>();
    status.put("status", status); //status can be "Passed" or "Failed"
    status.put("comment", comment); //comments can be information relating to the failure, for example, the execution message.
    wd.executeScript("FTLab:status", status);


    C# example

    Copy code
    Dictionary<string, string> statusmap = new Dictionary<string, string>();
                statusmap.Add("status", status); //status can be "Passed" or "Failed"
                statusmap.Add("comment", comment); //comments can be information relating to the failure, for example, the execution message.
                driver.ExecuteScript("FTLab:status", statusmap);


    Note: When create Android/iOS driver fails, a status of Not available is sent to the lab.

  • You can also filter tests results by the mobile app name, version, and build.

Back to top

Delete test details

Admin users can delete one or more tests. Regular users can delete only their own tests. Test results are retained for the number of days specified in the Administration settings. For more details, see File Storage settings in Administration settings.

OpenText Core SDP: Test results are retained for 30 days.

Back to top

See also: