Forum Discussion

MildaGenius's avatar
MildaGenius
New Contributor
4 years ago
Solved

How to access result files from test

Hello, I am using Appium + AltUnity + Python script to run test on mobile devices.   Test generates some kinds of result files (txt, raw, png). These files are pulled out from device by Appium to ...
  • devarshgandhi's avatar
    4 years ago

    Bitbar has support for downloading the test run artifacts through an API.
    curl -u <bitbar_api_key>: -X GET 

    https://cloud.bitbar.com/api/v2/users/<userId>/projects/<projectId>/runs/<runId>/device-sessions/<deviceSessionId>/output-file-set/files

    If Appium produces txt and png files Appium cloud-side(server-side) framework, you can copy those files to sandbox/output-files folder in your run-tests.sh script to be able to see it in results.

    Reach out to support if you have more questions.