public void WaitForProperty(string locator, string propertyName, object expectedValue, int timeout)
{
while (true)
{
if (Exists(locator))
{
WaitForPropertyTime(locator, propertyName, expectedValue, timeout);
break;
}
Thread.Sleep(1000);
}
}
This Method is True for WaitForProperty using?