/// <summary>
 /// Verifies if an element value attribute content is equals to the expected text.
 /// Wrapper method to WaitForTextToBePresentInValue
 /// </summary>
 /// <param name="expectedText">the expected text inside the web element</param>
 /// <param name="element">the web element</param>
 /// <param name="elementName">the element name</param>
 /// <param name="page">the element page name</param>
 protected void IsValuePresent(IWebElement element, String expectedValue, String elementName, String page)
 {
     WaitsHandler.WaitForTextToBePresentInValue(DriverManager.GetDriver(), element, expectedValue, elementName, page);
 }