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 indicate-element Studio の画面上の要素インジケーターを呼び出して、結果を要素のエントリとしてプロジェクトのオブジェクト リポジトリに保存し、前に指定した画面または親要素にアタッチします。これを使用して、uip rpa indicate-applicationを介して親画面を配置した後にオブジェクト リポジトリのツリーを拡張します。
Studio はインジケーター UI を駆動するため、動詞には Windows ランナーが必要です。
概要
uip rpa indicate-element [--name <string>] [--parent-id <string>] [--parent-name <string>] [--description <string>] [--activity-class-name <string>]
uip rpa indicate-element [--name <string>] [--parent-id <string>] [--parent-name <string>] [--description <string>] [--activity-class-name <string>]
オプション
| フラグ | 説明 |
|---|---|
--name <string> | オブジェクト リポジトリに表示される要素の名前です。 |
--parent-id <string> | 親画面または要素の参照 ID です。--parent-nameよりも優先されます。 |
--parent-name <string> | 親画面または要素の名前です。--parent-idが指定されていない場合に使用します。 |
--description <string> | 要素の説明 (任意) |
--activity-class-name <string> | 要素に関連付けられたアクティビティ クラス名です。 |
インストールされているツールのバージョンの完全なオプションリストについては、以下を実行します。
uip rpa indicate-element --help
uip rpa indicate-element --help
例
# Add a "SubmitButton" element to the "LoginScreen" screen
uip rpa indicate-element \
--name SubmitButton \
--parent-name LoginScreen \
--activity-class-name UiPath.UIAutomationNext.Activities.NClick
# Add a child element using an explicit parent ID
uip rpa indicate-element \
--name UsernameField \
--parent-id 7c8a4d2e-1f3b-4c8d-9b1f-9f6dd2c4f6d2 \
--description "Username input on the login screen"
# Add a "SubmitButton" element to the "LoginScreen" screen
uip rpa indicate-element \
--name SubmitButton \
--parent-name LoginScreen \
--activity-class-name UiPath.UIAutomationNext.Activities.NClick
# Add a child element using an explicit parent ID
uip rpa indicate-element \
--name UsernameField \
--parent-id 7c8a4d2e-1f3b-4c8d-9b1f-9f6dd2c4f6d2 \
--description "Username input on the login screen"
関連
uip rpa indicate-application— 親画面の子要素の前に親画面を指定します。