/// <summary>
 /// UnCheck the checkbox in the UI.
 /// If the checkbox is already checked, it will try to click on the [ClickableElement] of this control, which make it UnCheck on the UI
 /// </summary>
 public void Uncheck()
 {
     if (IsChecked)
     {
         ClickableElement.WaitUntilElementCssDisplayed();
         ClickableElement.Click();
     }
 }