uipath-cli
latest
false
- Overview
- Get started
- Concepts
- Using UiPath CLI
- UiPath for Coding Agents
- 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
uip tm teststeplog manages the step-level logs recorded during a test case execution. A test step log captures the outcome of a single step within a test case log, providing granular pass/fail information below the test case level.
Synopsis
uip tm teststeplog list --test-case-log-id <uuid> [--project-key <key>] [--limit <n>] [--offset <n>]
uip tm teststeplog list --test-case-log-id <uuid> [--project-key <key>] [--limit <n>] [--offset <n>]
All verbs honor the global options and the standard exit codes. Every verb accepts -t, --tenant <name> and --log-level <level> (default Information).
uip tm teststeplog list
List the step logs for a specific test case log.
Arguments
None.
Options
--test-case-log-id <uuid>(required) — UUID of the test case log whose step logs to retrieve. Get this fromuip tm executions testcaselogs listoruip tm testcases list-result-history.--project-key <key>— owning project. Optional; not required.--limit <n>— page size. Defaults to50.--offset <n>— results to skip. Defaults to0.
Example
uip tm teststeplog list \
--test-case-log-id c3d4e5f6-0000-0000-0000-000000000001
uip tm teststeplog list \
--test-case-log-id c3d4e5f6-0000-0000-0000-000000000001
Data shape
{
"Code": "TestStepLogsList",
"Data": [
{
"Id": "d4e5f6a7-0000-0000-0000-000000000001",
"StepName": "Navigate to login page",
"Result": "Passed",
"Duration": "00:00:02"
},
{
"Id": "d4e5f6a7-0000-0000-0000-000000000002",
"StepName": "Enter credentials",
"Result": "Failed",
"Duration": "00:00:01",
"ErrorMessage": "Element not found: #password-field"
}
]
}
{
"Code": "TestStepLogsList",
"Data": [
{
"Id": "d4e5f6a7-0000-0000-0000-000000000001",
"StepName": "Navigate to login page",
"Result": "Passed",
"Duration": "00:00:02"
},
{
"Id": "d4e5f6a7-0000-0000-0000-000000000002",
"StepName": "Enter credentials",
"Result": "Failed",
"Duration": "00:00:01",
"ErrorMessage": "Element not found: #password-field"
}
]
}
Related
- executions testcaselogs list — source of the
--test-case-log-id. - testcaselog list-assertions — assertion-level detail for a test case log.
- report — high-level execution summary.