activities
latest
false
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。
ワークフローに関するアクティビティ
Last updated 2024年10月31日

VerifyExpressionWithOperator

演算子を使用して、指定した式と比較してアサートすることにより、式を検証します。

定義

名前 空間: UiPath.Testing.API

アセンブリ: UiPath.Testing.Activities.Api (UiPath.Testing.Activities.Api.dll の場合)

オーバー ロード

オーバーロード説明
VerifyExpressionWithOperator(object, Comparison, object, string)演算子を使用して、指定した式と比較してアサートすることにより、式を検証します。
VerifyExpressionWithOperator(object, Comparison, object)string, bool, string, bool, bool)指定した式と演算子を使用して式をアサートすることで、式を検証します。 出力メッセージ形式の設定や、アサーションが失敗した場合のスクリーンショットの作成など、検証に追加して他の構成を実行することもできます。

VerifyExpressionWithOperator(object, Comparison, object, string)

演算子を使用して、指定した式と比較してアサートすることにより、式を検証します。

bool VerifyExpressionWithOperator(
	Object firstExpression,
	Comparison operatorValue,
	Object secondExpression
       string outputMessageFormat = null
)bool VerifyExpressionWithOperator(
	Object firstExpression,
	Comparison operatorValue,
	Object secondExpression
       string outputMessageFormat = null
)
最初の式 オブジェクト
検証プロセスの 1 つ目の式です。
operatorValue 比較
2 つの式の検証に使用する、数学演算子。
2 番目の式 オブジェクト
検証プロセスの 2 番目の式です。
出力メッセージの書式 文字列
出力メッセージの形式です。次の引数がサポートされています。
  • {LeftExpression}
  • {LeftExpressionText}
  • {RightExpression}
  • {RightExpressionText}
  • {Result}
  • {Operator}

詳しくは、「outputMessageFormatを設定する」をご覧ください。

VerifyExpressionWithOperator(object, Comparison, object)string, bool, string, bool, bool)

指定した式と演算子を使用して式をアサートすることで、式を検証します。 出力メッセージ形式の設定や、アサーションが失敗した場合のスクリーンショットの作成など、検証に追加して他の構成を実行することもできます。

bool VerifyExpressionWithOperator(
	Object firstExpression,
	Comparison operatorValue,
	Object secondExpression,
	string outputMessageFormat,
	bool continueOnFailure,
	string alternativeVerificationTitle,
	bool takeScreenshotInCaseOfFailingAssertion,
	bool takeScreenshotInCaseOfSucceedingAssertion
)bool VerifyExpressionWithOperator(
	Object firstExpression,
	Comparison operatorValue,
	Object secondExpression,
	string outputMessageFormat,
	bool continueOnFailure,
	string alternativeVerificationTitle,
	bool takeScreenshotInCaseOfFailingAssertion,
	bool takeScreenshotInCaseOfSucceedingAssertion
)
最初の式 オブジェクト
検証プロセスの 1 つ目の式です。
operatorValue 比較
2 つの式を検証するために使用できる数学演算子です。 演算子には、 Comparison オブジェクトを介してアクセスします。 次のオプションが利用できます。
  • コテイン
  • 等値
  • GreaterThan
  • 以上
  • 非等値
  • 未満
  • LessThanOrEqual
  • 正規表現の一致
2 番目の式 オブジェクト
検証プロセスの 2 番目の式です。
出力メッセージの書式 文字列
出力メッセージの形式です。 次の引数がサポートされています。
  • {LeftExpression}
  • {LeftExpressionText}
  • {RightExpression}
  • {RightExpressionText}
  • {Result}
  • {Operator}

詳しくは、「outputMessageFormatを設定する」をご覧ください。

失敗時に実行を続行 Boolean
アクティビティが例外をスローしてもオートメーションの実行を継続するかどうかを指定します。既定値は False です。その結果、フィールドが空白でエラーが発生すると、プロジェクトの実行が停止します。値を True に設定すると、プロジェクトの実行はエラーに関係なく継続されます。
代替の検証タイトル 文字列
このタイトルは Orchestrator に表示されます。
ファイルのダウンロード時にスクリーンショットを作成する Boolean
[ Trueに設定すると、検証に失敗した場合に対象プロセスのスクリーンショットを作成します。
スクリーンショットの作成ケースの改良 Boolean
[ Trueに設定すると、検証に成功した場合に対象プロセスのスクリーンショットが作成されます。

戻り値

検証が成功/成功した場合は「True」、検証に失敗した場合は「False」です。

outputMessageFormat の構成

outputMessageFormat パラメーターには、検証操作で使用される値のプレースホルダーとして機能する、サポートされている引数を使用して設定できます。これらのプレースホルダーには、実行時に API を呼び出すときに定義された変数または値が自動的に入力されます。

VerifyExpressionWithOperator API では、出力メッセージの作成時に、サポートされている次の引数を実装できます。

  • {LeftExpression}: [ firstExpression ] パラメーターに指定した最初の式の値を表します。
  • {LeftExpressionText}: [ firstExpression ] パラメーターに挿入した最初の式のテキストを表します。
  • {RightExpression}: [ secondExpression ] パラメーターに指定した 2 番目の式の値を表します。
  • {RightExpressionText}: [ secondExpression ] パラメーターに挿入した 2 番目の式のテキストを表します。
  • {Result}: 検証結果である API の戻り値を表します。
  • {Operator: operatorValue パラメーターで設定される、検証で使用される演算子を表します。
以下は、 outputMessageFormat パラメーターの設定を含む VerifyExpressionWithOperator API の使用方法の例です。
// Initialize variables for the expressions to be verified
var expression1 = "User created succesfully";
var expression2 = "successfully created user";

// Employ the VerifyExpressionWithOperator API, with the last string parameter being the outputMessageFormat
testing.VerifyExpressionWithOperator(expression1, Comparison.Contains, expression2, "{LeftExpression} {Operator} the {RightExpression}, so the verification is {Result}.");// Initialize variables for the expressions to be verified
var expression1 = "User created succesfully";
var expression2 = "successfully created user";

// Employ the VerifyExpressionWithOperator API, with the last string parameter being the outputMessageFormat
testing.VerifyExpressionWithOperator(expression1, Comparison.Contains, expression2, "{LeftExpression} {Operator} the {RightExpression}, so the verification is {Result}.");

この例では、中括弧内のプレースホルダーが実行時に対応する変数名とその値に置き換えられ、カスタマイズされた出力メッセージが提供されます。

このページは役に立ちましたか?

サポートを受ける
RPA について学ぶ - オートメーション コース
UiPath コミュニティ フォーラム
Uipath Logo White
信頼とセキュリティ
© 2005-2024 UiPath. All rights reserved.