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-legacy debug UiRobot を使用して XAML ワークフローをローカルで実行します。ログをリアルタイムでストリーミングし、成功時には構造化された出力引数を、失敗した場合はエラーの詳細を返します。ローカル マシンに UiRobot をインストールしておく必要があります。既定では、動詞は UiRobot を自動検出します UiRobot.exeオーバーライドする --robot-path を渡します。
Windows のみ — 概要 の警告を参照してください。
概要
uip rpa-legacy debug <xaml-path> [options]
uip rpa-legacy debug <xaml-path> [options]
<xaml-path>(必須) — 実行する XAML ワークフロー ファイルへのパスです。
オプション
| フラグ | 説明 |
|---|---|
-i, --input <json> | 引数を JSON 文字列として入力します。 |
--result-path <path> | 構造化された実行結果 (出力引数またはエラーの詳細) を JSON ファイルに書き込みます。 |
--timeout <seconds> | 実行タイムアウト (秒単位) (0 = タイムアウトなし)。 |
--robot-path <path> | UiRobot.exeへのパス (指定しない場合は自動検出)。 |
例
# Run a workflow with no input
uip rpa-legacy debug ./MyProject/Main.xaml
# Pass input arguments inline and write the result to a file
uip rpa-legacy debug ./MyProject/Main.xaml \
--input '{"invoicePath":"C:/data/inv.pdf"}' \
--result-path ./run-result.json
# Use an explicit UiRobot path with a 5-minute timeout
uip rpa-legacy debug ./MyProject/Main.xaml \
--robot-path "C:/Program Files/UiPath/Studio/UiRobot.exe" \
--timeout 300
# Run a workflow with no input
uip rpa-legacy debug ./MyProject/Main.xaml
# Pass input arguments inline and write the result to a file
uip rpa-legacy debug ./MyProject/Main.xaml \
--input '{"invoicePath":"C:/data/inv.pdf"}' \
--result-path ./run-result.json
# Use an explicit UiRobot path with a 5-minute timeout
uip rpa-legacy debug ./MyProject/Main.xaml \
--robot-path "C:/Program Files/UiPath/Studio/UiRobot.exe" \
--timeout 300
関連
uip rpa-legacy validate— デバッグ前に検証して、最初にコンパイルエラーをキャッチします。uip rpa-legacy package— プロジェクトが正常に実行されたら、プロジェクトをパッケージ化します。uip rpa run-file— クロスプラットフォーム ワークフロー ランナー非レガシ プロジェクトに適しています。uip rpa-legacy— ツールの概要。