Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 921 Bytes

File metadata and controls

41 lines (28 loc) · 921 Bytes

Getting Started

Installation

npm install -g @devicecloud/cli

Basic Usage

Run tests with Device Cloud using either positional or named arguments:

# Using positional arguments
dcd cloud app.apk tests/

# Using named arguments (recommended)
dcd cloud --app-file app.apk --flows tests/

Quick Examples

# Run single test
dcd cloud --app-file app.apk --flows login.yaml

# Run test directory
dcd cloud --app-file app.apk --flows tests/

# Run with device selection
dcd cloud --app-file app.apk --flows tests/ --android-device pixel-6

# Run with name for tracking
dcd cloud --app-file app.apk --flows tests/ --name "smoke-tests"

Next Steps