This feature is provided as a convenience to you, but it is not supported.
Verifies that an actual value matches an expected value using fuzzy verification. See Fuzzy Verification for more information.
FuzzyVerify(aActual, aExpected[, sDesc])
| Variable | Description |
|---|---|
| aActual | The value to verify. ANYTYPE. |
| aExpected | The expected value. ANYTYPE. |
| sDesc | Optional: A message describing the comparison. STRING. |
FuzzyVerify is just like the Verify function except that it uses fuzzy verification when determining whether aActual and aExpected match.
// checks the selected value in the text field using fuzzy verification FuzzyVerify(TextEditor.Document.GetSelText(), "Pagoda", "selected text")