uipath-cli
latest
false
- Überblick
- Erste Schritte
- Konzepte
- Verwenden der UiPath CLI
- UiPath für Codierungs-Agents
- Anleitungen
- CI/CD-Rezepte
- Befehlsreferenz
- Überblick
- Exitcodes
- Globale Optionen
- UIP-codierter Agent
- UIP-Dokumentation
- Add-Test-Data-Entität
- Add-Test-Data-Queue
- Add-Test-Data-Variation
- Analysieren
- Erstellen
- Ein Projekt erstellen
- Diff
- Suchaktivitäten
- Get-Analyse-Regeln
- get-standard-aktivität-xaml
- Fehler abrufen
- Manuelle-Testfälle erhalten
- Manuelle-Testschritte erhalten
- Get-Versionen
- Beispiel für einen Workflow abrufen
- Anwendung anzeigen
- Anzeigeelement
- Inspektionspaket
- install-data-fabric-entities
- Pakete installieren oder aktualisieren
- list-data-fabric-entities
- Beispiele für Listenworkflows
- Packen
- restore
- Ausführungsdatei installieren
- Suchvorlagen
- Studio starten
- Ausführung anhalten
- UIA
- UIP-Ablaufverfolgungen
- Migration
- Referenz und Support
Wichtig :
Dieser Inhalt wurde maschinell übersetzt.
Es kann 1–2 Wochen dauern, bis die Lokalisierung neu veröffentlichter Inhalte verfügbar ist.
UiPath-CLI-Benutzerhandbuch
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.
Zusammenfassung
uip tm teststeplog list --project-key <key> --test-case-log-id <uuid>
uip tm teststeplog list --project-key <key> --test-case-log-id <uuid>
Alle Verben berücksichtigen die globalen Optionen und die Standardaustrittscodes. Jedes Verb akzeptiert -t, --tenant <name> und --log-level <level> (Standard: Information).
uip tm teststeplog list
List the step-level logs for a single test case log.
Argumente
Keine.
Optionen
--project-key <key>(erforderlich) – besitzendes Projekt.--test-case-log-id <uuid>(required) — test case log UUID. Get this fromuip tm executions testcaselogs list.
Beispiel
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
Datenform
{
"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.
Zugehörig
- 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.