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 retrieves the execution log for the individual steps of a manual or mixed test case that was run as part of a test execution. Each step log captures the step's action, expected result, actual outcome, and any note the tester recorded.
Step logs are produced when a manual test case has steps defined (uip tm testcases list-steps) and those steps are executed and recorded during a run.
Synopsis
uip tm teststeplog list --project-key <key> --test-case-log-id <uuid>
uip tm teststeplog list --project-key <key> --test-case-log-id <uuid>
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-level logs for a single test case log.
Arguments
None.
Options
--project-key <key>(required) — owning project.--test-case-log-id <uuid>(required) — test case log UUID. Get this fromuip tm executions testcaselogs list.
Example
uip tm teststeplog list \
--project-key DEMO \
--test-case-log-id a1b2c3d4-0000-0000-0000-000000000001
uip tm teststeplog list \
--project-key DEMO \
--test-case-log-id a1b2c3d4-0000-0000-0000-000000000001
Data shape
{
"Code": "TestStepLogList",
"Data": [
{
"StepId": "d4e5f6a7-0000-0000-0000-000000000001",
"Order": 1,
"Action": "Open the login page",
"ExpectedResult": "The login form is visible",
"ActualResult": "Page loaded successfully",
"Result": "Passed"
},
{
"StepId": "d4e5f6a7-0000-0000-0000-000000000002",
"Order": 2,
"Action": "Enter valid credentials",
"ExpectedResult": "User is redirected to the dashboard",
"ActualResult": "Error 401 returned",
"Result": "Failed"
}
]
}
{
"Code": "TestStepLogList",
"Data": [
{
"StepId": "d4e5f6a7-0000-0000-0000-000000000001",
"Order": 1,
"Action": "Open the login page",
"ExpectedResult": "The login form is visible",
"ActualResult": "Page loaded successfully",
"Result": "Passed"
},
{
"StepId": "d4e5f6a7-0000-0000-0000-000000000002",
"Order": 2,
"Action": "Enter valid credentials",
"ExpectedResult": "User is redirected to the dashboard",
"ActualResult": "Error 401 returned",
"Result": "Failed"
}
]
}
Each StepId corresponds to a step defined in uip tm testcases list-steps.
Related
- testcases list-steps — list the step definitions for a test case.
- testcaselogs list-assertions — list assertion-level detail for a test case log.
- executions testcaselogs list — list all test case logs in an execution.