uipath-cli
latest
false
- Visão geral
- Introdução
- Conceitos
- Usando o UiPath CLI
- UiPath para agentes de codificação
- Guias de instruções
- Receitas de CI/CD
- Referência de comando
- Visão geral
- Códigos de saída
- Opções globais
- Agente de código uip
- Documento da UIP
- adicionar-tipo-dados-de-teste
- adicionar-dados-de-teste-fila
- adicionar-teste-variação de dados
- Analisar
- Criar
- criar projeto
- Comparação
- encontrar atividades
- obter-analisador-regras
- obter-padrão-atividade-xaml
- obter-erros
- obter-casos-de-teste-manuais
- obter-etapas-de-teste-manual
- Obter versões
- obter-fluxo-de-trabalho-exemplo
- indicar aplicativo
- indicar elemento
- inspecionar pacote
- instalar-data-fabric-entities
- instalar-ou-atualizar pacotes
- listar-data-fabric-entities
- listar-exemplos-de-fluxo-de-trabalho
- Empacotar
- restore
- arquivo de execução
- modelos-pesquisar
- Iniciar Studio
- interromper a execução
- UIA
- Traces da UIP
- Migração
- Referência e suporte
Importante :
Este conteúdo foi traduzido com auxílio de tradução automática.
A localização de um conteúdo recém-publicado pode levar de 1 a 2 semanas para ficar disponível.
Guia do usuário da 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.
Resumo
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>
Todos os verbos honram as opções globais e os códigos de saída padrão. Cada verbo aceita -t, --tenant <name> e --log-level <level> (padrão 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.
Argumentos
Nenhum.
Opções
--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.
Exemplo
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
Formato dos dados
{
"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.
Argumentos
Nenhum.
Opções
--object-id <uuid>(required) — object UUID.--object-type <type>(required) — type of object.--label <text>(required) — label to check.
Exemplo
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
Formato dos dados
{
"Code": "ObjectLabelGet",
"Data": {
"Label": "smoke",
"Present": true
}
}
{
"Code": "ObjectLabelGet",
"Data": {
"Label": "smoke",
"Present": true
}
}
uip tm objectlabel add
Attach a label to an object.
Argumentos
Nenhum.
Opções
--object-id <uuid>(required) — object UUID.--object-type <type>(required) — type of object.--label <text>(required) — label to attach.
Exemplo
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
Formato dos dados
{
"Code": "ObjectLabelAdd",
"Data": {
"Label": "smoke",
"Result": "Added"
}
}
{
"Code": "ObjectLabelAdd",
"Data": {
"Label": "smoke",
"Result": "Added"
}
}
uip tm objectlabel remove
Remove a label from an object.
Argumentos
Nenhum.
Opções
--object-id <uuid>(required) — object UUID.--object-type <type>(required) — type of object.--label <text>(required) — label to remove.
Exemplo
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
Formato dos dados
{
"Code": "ObjectLabelRemove",
"Data": {
"Label": "smoke",
"Result": "Removed"
}
}
{
"Code": "ObjectLabelRemove",
"Data": {
"Label": "smoke",
"Result": "Removed"
}
}
Relacionado
- requirement — search requirements by label with
requirement search-by-label. - customfield — custom field definitions can use labels.
Veja também
- Resumo
- uip tm objectlabel list
- Argumentos
- Opções
- Exemplo
- Formato dos dados
- uip tm objectlabel get
- Argumentos
- Opções
- Exemplo
- Formato dos dados
- uip tm objectlabel add
- Argumentos
- Opções
- Exemplo
- Formato dos dados
- uip tm objectlabel remove
- Argumentos
- Opções
- Exemplo
- Formato dos dados
- Relacionado
- Veja também