UiPath Documentation
uipath-cli
latest
false

UiPath CLI user guide

uip tm teststeplog

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 from uip tm executions testcaselogs list or uip tm testcases list-result-history.
  • --project-key <key> — owning project. Optional; not required.
  • --limit <n> — page size. Defaults to 50.
  • --offset <n> — results to skip. Defaults to 0.

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"
    }
  ]
}

See also

  • Synopsis
  • uip tm teststeplog list
  • Arguments
  • Options
  • Example
  • Data shape
  • Related
  • See also

Was this page helpful?

Connect

Need help? Support

Want to learn? UiPath Academy

Have questions? UiPath Forum

Stay updated