This feature is provided as a convenience to you, but it is not supported.
Action
Verifies that an actual value matches an expected value using fuzzy verification. See
Fuzzy Verification for more information.
Syntax
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.
|
Notes
FuzzyVerify is just like the
Verify function except that it uses fuzzy verification when determining whether
aActual and
aExpected match.
Example
// checks the selected value in the text field using fuzzy verification
FuzzyVerify(TextEditor.Document.GetSelText(), "Pagoda", "selected text")