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 objectlabel manages labels attached to Test Manager objects (test cases, requirements, and so on). Labels are free-form strings used to tag and group objects for filtering and search.
概要
uip tm objectlabel list --object-id <uuid> --object-type <type>
uip tm objectlabel get --object-id <uuid> --object-type <type> --label <text>
uip tm objectlabel add --object-id <uuid> --object-type <type> --label <text>
uip tm objectlabel remove --object-id <uuid> --object-type <type> --label <text>
uip tm objectlabel list --object-id <uuid> --object-type <type>
uip tm objectlabel get --object-id <uuid> --object-type <type> --label <text>
uip tm objectlabel add --object-id <uuid> --object-type <type> --label <text>
uip tm objectlabel remove --object-id <uuid> --object-type <type> --label <text>
すべての動詞は、 グローバルオプション と標準 終了コードを尊重します。すべての動詞は -t, --tenant <name> と --log-level <level> を受け入れます(デフォルト Information)。
--object-type <type> accepted values are tool-version-dependent (for example, testcase, requirement). Run uip tm objectlabel list --help to see the current enum.
uip tm objectlabel list
List all labels on an object.
引数
設定はありません。
オプション
--object-id <uuid>(required) — object UUID (for example, a test case'sId).--object-type <type>(required) — type of object to query. Accepted values are tool-version-dependent; run--helpto see the current set.
例
uip tm objectlabel list \
--object-id a1b2c3d4-0000-0000-0000-000000000001 \
--object-type testcase
uip tm objectlabel list \
--object-id a1b2c3d4-0000-0000-0000-000000000001 \
--object-type testcase
データシェイプ
{
"Code": "ObjectLabelList",
"Data": [
"smoke",
"high-priority"
]
}
{
"Code": "ObjectLabelList",
"Data": [
"smoke",
"high-priority"
]
}
uip tm objectlabel get
Check whether a specific label is present on an object.
引数
設定はありません。
オプション
--object-id <uuid>(required) — object UUID.--object-type <type>(required) — type of object.--label <text>(required) — label to check.
例
uip tm objectlabel get \
--object-id a1b2c3d4-0000-0000-0000-000000000001 \
--object-type testcase \
--label smoke
uip tm objectlabel get \
--object-id a1b2c3d4-0000-0000-0000-000000000001 \
--object-type testcase \
--label smoke
データシェイプ
{
"Code": "ObjectLabelGet",
"Data": {
"Label": "smoke",
"Present": true
}
}
{
"Code": "ObjectLabelGet",
"Data": {
"Label": "smoke",
"Present": true
}
}
uip tm objectlabel add
Attach a label to an object.
引数
設定はありません。
オプション
--object-id <uuid>(required) — object UUID.--object-type <type>(required) — type of object.--label <text>(required) — label to attach.
例
uip tm objectlabel add \
--object-id a1b2c3d4-0000-0000-0000-000000000001 \
--object-type testcase \
--label smoke
uip tm objectlabel add \
--object-id a1b2c3d4-0000-0000-0000-000000000001 \
--object-type testcase \
--label smoke
データシェイプ
{
"Code": "ObjectLabelAdd",
"Data": {
"Label": "smoke",
"Result": "Added"
}
}
{
"Code": "ObjectLabelAdd",
"Data": {
"Label": "smoke",
"Result": "Added"
}
}
uip tm objectlabel remove
Remove a label from an object.
引数
設定はありません。
オプション
--object-id <uuid>(required) — object UUID.--object-type <type>(required) — type of object.--label <text>(required) — label to remove.
例
uip tm objectlabel remove \
--object-id a1b2c3d4-0000-0000-0000-000000000001 \
--object-type testcase \
--label smoke
uip tm objectlabel remove \
--object-id a1b2c3d4-0000-0000-0000-000000000001 \
--object-type testcase \
--label smoke
データシェイプ
{
"Code": "ObjectLabelRemove",
"Data": {
"Label": "smoke",
"Result": "Removed"
}
}
{
"Code": "ObjectLabelRemove",
"Data": {
"Label": "smoke",
"Result": "Removed"
}
}
関連
- requirement — search requirements by label with
requirement search-by-label. - customfield — custom field definitions can use labels.