- 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 tm teststeplog list`, which retrieves the execution log for individual steps of a manual or mixed test case run.
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>
uip tm teststeplog list --test-case-log-id <uuid> --project-key <key>
All verbs honor the global options and the standard exit codes. Every verb accepts --log-level <level> (default Information).
uip tm teststeplog list
List the step logs for a specific test case log. Returns the full, unpaginated set — there is no --limit/--offset.
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>(required) — owning project (for example,DEMO).
Example
uip tm teststeplog list \
--test-case-log-id c3d4e5f6-0000-0000-0000-000000000001 \
--project-key DEMO
uip tm teststeplog list \
--test-case-log-id c3d4e5f6-0000-0000-0000-000000000001 \
--project-key DEMO
Data shape
{
"Code": "TestStepLogList",
"Data": [
{
"Id": "e5f6a7b8-0000-0000-0000-000000000001",
"TestStepId": "d4e5f6a7-0000-0000-0000-000000000001",
"Result": "Passed",
"Comment": "Opened login page",
"HasError": false,
"HasAttachment": false,
"TestCaseLogId": "c3d4e5f6-0000-0000-0000-000000000001",
"OrderNo": 1,
"ActionType": "Manual",
"Description": "Open login page",
"ExpectedResult": "Login form is displayed",
"ClipboardData": ""
},
{
"Id": "e5f6a7b8-0000-0000-0000-000000000002",
"TestStepId": "d4e5f6a7-0000-0000-0000-000000000002",
"Result": "Failed",
"Comment": "Selector not found",
"HasError": true,
"HasAttachment": true,
"TestCaseLogId": "c3d4e5f6-0000-0000-0000-000000000001",
"OrderNo": 2,
"ActionType": "Manual",
"Description": "Submit valid credentials",
"ExpectedResult": "User is signed in",
"ClipboardData": ""
}
]
}
{
"Code": "TestStepLogList",
"Data": [
{
"Id": "e5f6a7b8-0000-0000-0000-000000000001",
"TestStepId": "d4e5f6a7-0000-0000-0000-000000000001",
"Result": "Passed",
"Comment": "Opened login page",
"HasError": false,
"HasAttachment": false,
"TestCaseLogId": "c3d4e5f6-0000-0000-0000-000000000001",
"OrderNo": 1,
"ActionType": "Manual",
"Description": "Open login page",
"ExpectedResult": "Login form is displayed",
"ClipboardData": ""
},
{
"Id": "e5f6a7b8-0000-0000-0000-000000000002",
"TestStepId": "d4e5f6a7-0000-0000-0000-000000000002",
"Result": "Failed",
"Comment": "Selector not found",
"HasError": true,
"HasAttachment": true,
"TestCaseLogId": "c3d4e5f6-0000-0000-0000-000000000001",
"OrderNo": 2,
"ActionType": "Manual",
"Description": "Submit valid credentials",
"ExpectedResult": "User is signed in",
"ClipboardData": ""
}
]
}
Code is TestStepLogList (singular "Log"). HasAttachment: true means a screenshot or other artifact is attached to that step — download it with attachment download.
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.