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 rpa add-test-data-variation データ バリエーション ファイル (CSV、Excel、および同様の表形式) をテスト ケースに添付します。Studio はファイルをプロジェクトのデータ ソースとして登録し、列ヘッダーを引数名として読み取って、一致する引数をテスト ケースに追加することで、各行で 1 回の反復処理を実行します。
動詞は Studio を経由するため、Windows ランナーが必要です。テスト ケースとデータ ファイルの両方が、ディスク上のプロジェクト ディレクトリに既に存在している必要があります。
概要
uip rpa add-test-data-variation --test-case-path <string> --data-variation-path <string>
uip rpa add-test-data-variation --test-case-path <string> --data-variation-path <string>
オプション
| フラグ | 説明 |
|---|---|
--test-case-path <string> | プロジェクト ディレクトリ内のテスト ケース ファイル (.xaml または .cs) への相対パスです。 |
--data-variation-path <string> | プロジェクト ディレクトリ内のデータ バリエーション ファイル (CSV、Excel など) への相対パスです。 |
インストールされているツールのバージョンの完全なオプションリストについては、以下を実行します。
uip rpa add-test-data-variation --help
uip rpa add-test-data-variation --help
例
# Attach a CSV variation to a XAML test case
uip rpa add-test-data-variation \
--test-case-path Tests/CustomerOnboarding.xaml \
--data-variation-path Tests/Data/customers.csv
# Attach an Excel variation to a coded test case
uip rpa add-test-data-variation \
--test-case-path Tests/InvoiceFlow.cs \
--data-variation-path Tests/Data/invoice-fixtures.xlsx
# Attach a CSV variation to a XAML test case
uip rpa add-test-data-variation \
--test-case-path Tests/CustomerOnboarding.xaml \
--data-variation-path Tests/Data/customers.csv
# Attach an Excel variation to a coded test case
uip rpa add-test-data-variation \
--test-case-path Tests/InvoiceFlow.cs \
--data-variation-path Tests/Data/invoice-fixtures.xlsx
関連
uip rpa add-test-data-entity— ファイルではなく Data Service のエンティティをバインドします。uip rpa add-test-data-queue— ファイルではなく Orchestrator のテスト データのキューをバインドします。uip rpa create-project— データ ソースを追加する前に、テスト プロジェクトをスキャフォールディングします。uip tm testcases— 一致するテスト ケースを Test Manager で管理します。