For the complete documentation index, see llms.txt. This page is also available as Markdown.

Artifacts & Downloads

DeviceCloud captures various artifacts during test execution that can help debug and analyze your test runs.

Available Artifacts

Each test run generates:

  • Logs

  • Screenshots

  • Videos

  • Test reports

Download Options

There are two ways to download artifacts: inline during a dcd cloud run, or on-demand after the fact using dcd artifacts.

Inline (during dcd cloud)

Pass --download-artifacts directly to the cloud command and artifacts are downloaded automatically when the run completes:

# Download artifacts for all tests
dcd cloud app.apk flows/ --download-artifacts ALL

# Download artifacts for failed tests only
dcd cloud app.apk flows/ --download-artifacts FAILED

# Save to a custom path
dcd cloud app.apk flows/ --download-artifacts FAILED --artifacts-path ./failed.zip

On-demand (dcd artifacts)

Use the dcd artifacts command to download artifacts or reports for any completed run by its upload ID. This is useful when tests were submitted with --async, or when you need to pull reports after the fact:

See the dcd artifacts reference for the full flag list.

From the Console

Artifacts and workspace downloads are also available directly from the test result page in the DeviceCloud console. Use the download menu on any completed result to save videos, logs, screenshots, or the full workspace bundle.

Artifact Archive Structure

Artifacts are downloaded as a zip file:

Last updated