VerifyStartsWith
bool VerifyStartsWith(string actual, string prefix)Description
Verifies that the actual string begins with the specified prefix.
Parameters
- actual - The string value retrieved from a UI control.
- prefix - The required start text.
Example
void main()
{
VerifyStartsWith(GetText("LBL_GREETING"), "Hello");
}