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-cases lists the manual (not yet automated) test cases that Test Manager has linked to the current project. The output is the working set of candidates for automation — each entry includes the test case ID you need to feed into uip rpa get-manual-test-steps to retrieve the actual steps.
Studio brokers the Test Manager call, so the verb requires a Windows runner. The project must be linked to a Test Manager project for any results to appear.
Synopsis
uip rpa get-manual-test-cases [options]
uip rpa get-manual-test-cases [options]
Options
This verb takes no per-command options. Use the parent-level options shared by every uip rpa verb — see RPA tool overview.
For the complete option list on your installed tool version, run:
uip rpa get-manual-test-cases --help
uip rpa get-manual-test-cases --help
Examples
# List all manual test cases for the current project
uip rpa get-manual-test-cases
# Pipe IDs into get-manual-test-steps via output filter (JSON output)
uip rpa get-manual-test-cases --output json --output-filter "[].id"
# List all manual test cases for the current project
uip rpa get-manual-test-cases
# Pipe IDs into get-manual-test-steps via output filter (JSON output)
uip rpa get-manual-test-cases --output json --output-filter "[].id"
Related
uip rpa get-manual-test-steps— fetch the steps for the test cases listed here.uip tm testcase— manage test cases directly in Test Manager.