- Vue d'ensemble (Overview)
- Démarrer
- Concepts
- Utilisation de la UiPath CLI
- Guides pratiques
- Revenus CI/CD
- Référence de commande
- Vue d'ensemble (Overview)
- Codes de sortie
- Options globales
- agent codé uip
- uip coder
- uip context-grounding
- UiPath Docsai
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- Tâches (Jobs)
- Dossiers
- Processus
- Paquets
- Machines
- Utilisateurs
- Rôles
- Licences
- Flux
- Pièces jointes (Attachments)
- Sessions
- Calendriers
- magasins d'informations d’identification
- journaux-audit
- paramètres
- Actifs
- Compartiments
- Compartiment-fichiers
- Bibliothèques
- Files d'attente (Queues)
- éléments de la file d'attente
- Déclencheurs (Triggers)
- Webhooks
- add-test-data-entity
- ajouter une file d'attente de données de test
- add-test-data-variation
- Analyser
- Construire
- créer-projet
- Différence
- recherche-activités
- Obtenir les règles de l'analyse
- récupérer-activité-xaml par défaut
- Récupérer les erreurs
- obtenir des cas de test manuels
- Obtenir les étapes de test manuelles
- get-library-object-repository
- get-object-repository
- Obtenir les versions
- exemple de workflow
- indiquer l'application
- indiquer l'élément
- inspecter-package
- install-data-fabric-entities
- installer-ou-Update-packages
- list-data-fabric-entités
- list-instances
- listes-exemples-workflow
- Créer un package
- Publier
- remote
- restore
- run, debug & execution
- Exécuter le fichier
- modèles-recherche
- Démarrer-Studio
- arrêter l'exécution
- tm
- UIA
- uip tasks
- Traçages UIP
- uip traces feedback
- Migration
- Référence et assistance
Syntax and options for `uip rpa tm`, which configures a Test Manager server connection and default project for an RPA project by writing its local .tmh/config.json.
uip rpa tm connects an RPA project to a Test Manager server and links a default project, entirely through local file I/O against .tmh/config.json in the project directory — no Studio or Helm instance is required for any verb here.
Synthèse
uip rpa tm connect --url <url>
uip rpa tm set-default-project --id <id> [--name <name>] [--key <key>]
uip rpa tm clear-default-project
uip rpa tm status
uip rpa tm connect --url <url>
uip rpa tm set-default-project --id <id> [--name <name>] [--key <key>]
uip rpa tm clear-default-project
uip rpa tm status
uip rpa tm connect
Set the Test Manager server URL. Switching to a different server clears the previously-linked default project, since it belonged to the old server.
Options
| Long | Valeur (Value) | Requis | Description |
|---|---|---|---|
--url <url> | absolute http(s) URL | oui | Test Manager server base URL, e.g. https://cloud.uipath.com/<org>/<tenant>/testmanager_. Must parse as an absolute URL with an http/https scheme — any other scheme (mailto:, file:, etc.) or an unparseable value fails client-side. |
Exemple
uip rpa tm connect --url https://cloud.uipath.com/myorg/mytenant/testmanager_
uip rpa tm connect --url https://cloud.uipath.com/myorg/mytenant/testmanager_
Format des données (--sortie json)
{
"message": "Test Manager server set to https://cloud.uipath.com/myorg/mytenant/testmanager_",
"projectDir": "/work/MyProject",
"configPath": "/work/MyProject/.tmh/config.json",
"testManagerBasePath": "https://cloud.uipath.com/myorg/mytenant/testmanager_"
}
{
"message": "Test Manager server set to https://cloud.uipath.com/myorg/mytenant/testmanager_",
"projectDir": "/work/MyProject",
"configPath": "/work/MyProject/.tmh/config.json",
"testManagerBasePath": "https://cloud.uipath.com/myorg/mytenant/testmanager_"
}
clearedDefaultProject: true is added when switching servers dropped a previously-linked default project. reloadHint is added when Studio needs a reload to pick up the change.
uip rpa tm set-default-project
Link a Test Manager project as this RPA project's default. Requires a connected server (tm connect) first — setting a default project without one is rejected.
Options
| Long | Valeur (Value) | Requis | Description |
|---|---|---|---|
--id <id> | string (GUID) | oui | Test Manager project id. |
--name <name> | string | non | Project display name, stored alongside the id. |
--key <key> | string | non | Project short code (e.g. PROJ), stored alongside the id. |
Exemple
uip rpa tm set-default-project --id a1b2c3d4-0000-0000-0000-000000000001 --name "Invoice Automation" --key INV
uip rpa tm set-default-project --id a1b2c3d4-0000-0000-0000-000000000001 --name "Invoice Automation" --key INV
Format des données (--sortie json)
{
"message": "Default Test Manager project set to Invoice Automation",
"projectDir": "/work/MyProject",
"configPath": "/work/MyProject/.tmh/config.json",
"defaultProject": { "id": "a1b2c3d4-0000-0000-0000-000000000001", "name": "Invoice Automation", "key": "INV" }
}
{
"message": "Default Test Manager project set to Invoice Automation",
"projectDir": "/work/MyProject",
"configPath": "/work/MyProject/.tmh/config.json",
"defaultProject": { "id": "a1b2c3d4-0000-0000-0000-000000000001", "name": "Invoice Automation", "key": "INV" }
}
uip rpa tm clear-default-project
Unlink the default Test Manager project. The server connection (tm connect) is left intact. Idempotent — succeeds even when no default project is currently set.
Exemple
uip rpa tm clear-default-project
uip rpa tm clear-default-project
Format des données (--sortie json)
{
"message": "Default Test Manager project unlinked.",
"projectDir": "/work/MyProject",
"configPath": "/work/MyProject/.tmh/config.json",
"cleared": true
}
{
"message": "Default Test Manager project unlinked.",
"projectDir": "/work/MyProject",
"configPath": "/work/MyProject/.tmh/config.json",
"cleared": true
}
cleared: false and message: "No default Test Manager project was set." when there was nothing to clear.
uip rpa tm status
Show the project's current Test Manager configuration — server URL and linked default project. Works whether or not .tmh/config.json exists yet.
Exemple
uip rpa tm status
uip rpa tm status
Format des données (--sortie json)
{
"projectDir": "/work/MyProject",
"configPath": "/work/MyProject/.tmh/config.json",
"connected": true,
"hasDefaultProject": true,
"testManagerBasePath": "https://cloud.uipath.com/myorg/mytenant/testmanager_",
"defaultProject": { "id": "a1b2c3d4-0000-0000-0000-000000000001", "name": "Invoice Automation", "key": "INV" }
}
{
"projectDir": "/work/MyProject",
"configPath": "/work/MyProject/.tmh/config.json",
"connected": true,
"hasDefaultProject": true,
"testManagerBasePath": "https://cloud.uipath.com/myorg/mytenant/testmanager_",
"defaultProject": { "id": "a1b2c3d4-0000-0000-0000-000000000001", "name": "Invoice Automation", "key": "INV" }
}
Associé
- Présentation de l’outil RPA
uip rpa get-manual-test-cases/get-manual-test-steps— hidden, superseded byuip tmfor manual test case access; thistmgroup is a different, project-local config concern.
Voir également
- Synthèse
- uip rpa tm connect
- Options
- Exemple
- Format des données (--sortie json)
- uip rpa tm set-default-project
- Options
- Exemple
- Format des données (--sortie json)
- uip rpa tm clear-default-project
- Exemple
- Format des données (--sortie json)
- uip rpa tm status
- Exemple
- Format des données (--sortie json)
- Associé
- Voir également