activities
latest
false
Importante :
A tradução automática foi aplicada parcialmente neste conteúdo.
Atividades do fluxo de trabalho
Last updated 31 de out de 2024

VerifyIsLess

Verifica se a primeira expressão é menor que a segunda expressão.

Definição

Namespace: UiPath.Testing.API

Assembly: UiPath.Testing.Activities.Api (em UiPath.Testing.Activities.Api.dll)

VerifyIsLess(object, object, string)

bool VerifyIsLess(
       object firstExpression,
       object secondExpression
       string outputMessageFormat = null
)bool VerifyIsLess(
       object firstExpression,
       object secondExpression
       string outputMessageFormat = null
)
PrimeiraExpressão Object
A primeira expressão no processo de verificação.
SegundaExpressão Object
A segunda expressão no processo de verificação.
FormatoDeMensagemDeSaída String
O formato da mensagem de saída. Os argumentos compatíveis são:
  • {LeftExpression}
  • {LeftExpressionText}
  • {RightExpression}
  • {RightExpressionText}
  • {Result}

For more information, check the Configuring the outputMessageFormat section.

RetornarValor

É True se a primeira expressão for menor que a segunda expressão e False se a primeira expressão for igual ou maior que a segunda expressão.

Configurando o outputMessageFormat

The outputMessageFormat parameter can be configured with supported arguments, that act as placeholders for the values used in the verification operation. These placeholders are automatically populated with the variables or values defined when invoking the API at runtime.

For the VerifyIsLess API, you can implement the following supported arguments when creating an output message:

  • {LeftExpression}: Represents the value of the first expression you provided for the firstExpression parameter.
  • {LeftExpressionText}: Represents the text of the first expression you inserted for the firstExpression parameter.
  • {RightExpression}: Represents the value of the second expression you provided for the secondExpression parameter.
  • {RightExpressionText}: Represents the text of the second expression you inserted for the secondExpression parameter.
  • {Result}: Represents the API's return value, which is the verification result.
The following is an example on how to use the VerifyIsLess API, which includes configuring the outputMessageFormat parameter:
// Initialize variables for the expressions to be verified
var expression1 = 4;
var expression2 = 5;

// Employ the VerifyIsLess API, with the last string parameter being the outputMessageFormat
testing.VerifyIsLess(expression1, expression2, "{LeftExpression} should be lower than {LowerLimitText}, and the result to this is {Result}");// Initialize variables for the expressions to be verified
var expression1 = 4;
var expression2 = 5;

// Employ the VerifyIsLess API, with the last string parameter being the outputMessageFormat
testing.VerifyIsLess(expression1, expression2, "{LeftExpression} should be lower than {LowerLimitText}, and the result to this is {Result}");

In the provided example, the placeholders within the curly brackets are replaced with the corresponding variable names and their values at runtime, providing a customized output message.

Esta página foi útil?

Obtenha a ajuda que você precisa
Aprendendo RPA - Cursos de automação
Fórum da comunidade da Uipath
Uipath Logo White
Confiança e segurança
© 2005-2024 UiPath. Todos os direitos reservados.