/// <summary>
 /// Gets the value of the masked currency edit
 /// </summary>
 /// <param name="by">By locator for masked currency edit</param>
 /// <returns>value of the element</returns>
 public static string GetValueMaskedNumberEdit(this By by)
 {
     return WaitHelpers.WaitForElementExist(by).GetValueMaskedNumberEdit();
 }
 /// <summary>
 /// Sets value of Kendo sswitch.
 /// </summary>
 /// <param name="by">By locator for Kendo switch</param>
 /// <param name="value">Value to set switch to.</param>
 public static void SetSwitchValue(this By by, bool value)
 {
     WaitHelpers.WaitForElementExist(by).SetSwitchValue(value);
 }
 /// <summary>
 /// Gets value of Kendo switch
 /// </summary>
 /// <param name="by">By locator for Kendo switch</param>
 /// <returns>Value of Kendo switch.</returns>
 public static bool GetSwitchValue(this By by)
 {
     return WaitHelpers.WaitForElementExist(by).GetSwitchValue();
 }
 /// <summary>
 /// Sets value of Kendo Masked Textbox with up down toggles.
 /// </summary>
 /// <param name="by">By locator of Kendo masked text box.</param>
 /// <param name="value">value to set.</param>
 public static void SetValueMaskedNumberEdit(this By by, string value)
 {
     WaitHelpers.WaitForElementExist(by).SetValueMaskedNumberEdit(value);
 }