/// <summary>
 /// Deselect the Enabled check box
 /// </summary>
 public void SelectDisable()
 {
     EnabledCheck.Wait(3).UnCheck();
 }
 /// <summary>
 /// Select the Enabled check box
 /// </summary>
 public void SelectEnable()
 {
     EnabledCheck.Wait(3).Check();
 }