- Overview
- Get started
- Concepts
- Using UiPath CLI
- How-to guides
- CI/CD recipes
- Command reference
- Overview
- Exit codes
- Global options
- uip codedagent
- uip coder
- uip context-grounding
- uip docsai
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- 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-library-object-repository
- get-object-repository
- get-versions
- get-workflow-example
- indicate-application
- indicate-element
- inspect-package
- install-data-fabric-entities
- install-or-update-packages
- list-data-fabric-entities
- list-instances
- list-workflow-examples
- pack
- publish
- remote
- restore
- run, debug & execution
- run-file
- search-templates
- start-studio
- stop-execution
- tm
- uia
- uip tasks
- uip traces
- uip traces feedback
- Migration
- Reference & support
Syntax and options for `uip rpa get-manual-test-steps`, which retrieves step-by-step content for manual test cases from Test Manager.
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.
This command is hidden from uip rpa --help (HIDDEN_CLI_TOOLS in source) — it still works if called directly, but current source comments say the CLI surface now points users at the dedicated uip tm (Test Manager) tool instead of duplicating manual-test verbs here. Prefer uip tm testcases for new scripts.
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 testcases— manage test cases directly in Test Manager.