VerifyEndsWith
bool VerifyEndsWith(string actual, string suffix)Description
Verifies that the actual string ends with the specified suffix.
Parameters
- actual - The string value retrieved from a UI control.
- suffix - The required end text.
Example
void main()
{
VerifyEndsWith(GetText("LBL_GREETING"), "!");
}