uipath-cli
latest
false
- Overview
- Get started
- Concepts
- Using UiPath CLI
- How-to guides
- CI/CD recipes
- Command reference
- Overview
- Exit codes
- Global options
- uip codedagent
- uip docsai
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- create-project
- diff
- find-activities
- get-analyzer-rules
- get-default-activity-xaml
- get-errors
- get-manual-test-cases
- get-manual-test-steps
- get-versions
- get-workflow-example
- indicate-application
- indicate-element
- inspect-package
- install-data-fabric-entities
- install-or-update-packages
- list-data-fabric-entities
- list-workflow-examples
- pack
- restore
- run-file
- search-templates
- start-studio
- stop-execution
- uia
- uip traces
- Migration
- Reference & support
UiPath CLI user guide
Last updated May 7, 2026
uip rpa get-manual-test-steps retrieves the step-by-step content of one or more manual test cases from Test Manager. Pair it with uip rpa get-manual-test-cases to discover IDs, then feed those IDs back into this verb to read the actual instructions — useful when generating an automated implementation from a manual test specification.
Studio fronts the Test Manager API call, so the verb requires a Windows runner.
Synopsis
uip rpa get-manual-test-steps --test-case-ids <array>
uip rpa get-manual-test-steps --test-case-ids <array>
Options
| Flag | Description |
|---|---|
--test-case-ids <array> | IDs of the test cases whose steps should be retrieved. |
For the complete option list on your installed tool version, run:
uip rpa get-manual-test-steps --help
uip rpa get-manual-test-steps --help
Examples
# Steps for a single test case
uip rpa get-manual-test-steps --test-case-ids '[412]'
# Steps for several test cases at once
uip rpa get-manual-test-steps --test-case-ids '[412, 415, 416]'
# Steps for a single test case
uip rpa get-manual-test-steps --test-case-ids '[412]'
# Steps for several test cases at once
uip rpa get-manual-test-steps --test-case-ids '[412, 415, 416]'
Related
uip rpa get-manual-test-cases— discover the IDs to feed into this verb.uip tm testcase— manage test cases directly in Test Manager.