uipath-cli
latest
false
- 概要
- はじめに
- 概念
- UiPath CLI を使用する
- UiPath for Coding Agents
- 使用ガイド
- CI/CD レシピ
- コマンド リファレンス
- 概要
- 終了コード
- グローバル オプション
- uip codedagent
- uip docsai
- add-test-data-entity
- テスト データのキューを追加
- 追加-テスト-データ-バリエーション
- 分析
- 開発
- プロジェクトを作成
- 差分
- アクティビティを検索
- GET-ANALYZER-RULES
- get-default-activity-xaml
- エラーを取得
- 手動テスト用のテスト ケースを取得
- 手動テストステップを取得
- get-versions
- Get-workflow-example
- indicate-application
- 要素を示す
- inspect-package
- install-data-fabric-entities
- パッケージのインストールまたは更新
- list-data-fabric-entities
- list-workflow-examples
- パッケージ化
- 元に戻す
- ファイル名を実行
- 検索テンプレート
- スタートスタジオ
- 実行を停止
- UIA
- UIP トレース
- 移行
- 参照とサポート
重要 :
このコンテンツは機械翻訳によって処理されています。
新しいコンテンツの翻訳は、およそ 1 ~ 2 週間で公開されます。
UiPath CLI ユーザー ガイド
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.
概要
uip tm teststeplog list --project-key <key> --test-case-log-id <uuid>
uip tm teststeplog list --project-key <key> --test-case-log-id <uuid>
すべての動詞は、 グローバルオプション と標準 終了コードを尊重します。すべての動詞は -t, --tenant <name> と --log-level <level> を受け入れます(デフォルト Information)。
uip tm teststeplog list
List the step-level logs for a single test case log.
引数
設定はありません。
オプション
--project-key <key>(必須) — プロジェクトを所有しています。--test-case-log-id <uuid>(required) — test case log UUID. Get this fromuip tm executions testcaselogs list.
例
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
データシェイプ
{
"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.
関連
- 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.