uipath-cli
latest
false
UiPath CLI ユーザー ガイド
- 概要
- はじめに
- 概念
- UiPath CLI を使用する
- 使用ガイド
- 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 週間で公開されます。
uip tm teststeplog は、テスト ケースの実行中に記録されたステップレベルのログを管理します。テスト ステップ ログは、テスト ケース ログ内の 1 つのステップの結果をキャプチャし、テスト ケース レベルより下のきめ細かい合否情報を提供します。
概要
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>]
すべての動詞は、 グローバルオプション と標準 終了コードを尊重します。すべての動詞は -t, --tenant <name> と --log-level <level> を受け入れます(デフォルト Information)。
uip tm teststeplog リスト
特定のテスト ケース ログのステップ ログを一覧表示します。
引数
設定はありません。
オプション
--test-case-log-id <uuid>(必須) — 取得するステップ ログが含まれるテスト ケース ログの UUID です。これはuip tm executions testcaselogs listまたはuip tm testcases list-result-historyから取得します。--project-key <key>— 所有プロジェクト。任意。必須ではありません。--limit <n>— ページ サイズ。既定値は [50です。--offset <n>— スキップする結果。既定値は [0です。
例
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
データシェイプ
{
"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"
}
]
}
関連
- 実行 テスト ケース ログのリスト —
--test-case-log-idのソース。 - TestCaseLog List-Assertions — テスト ケース ログのアサーション レベルの詳細。
- レポート — 実行の概要を表示します。