예제 #1
0
 protected void ChecksOnUI()
 {
     UIHelperUtility.ExecuteActionOnButton <String>(LogInButton,
                                                    new List <String>()
     {
         InputUsername.Text.Value, InputPass.Text.Value
     },
                                                    x => x.TrueForAll(y => UIHelperUtility.ValidateString(y)),
                                                    (x, y) => y.IsVisible.Value = x);
 }
예제 #2
0
 public void ChecksOnUI()
 {
     UIHelperUtility.ExecuteActionOnButton <String>(ConfirmButton,
                                                    new List <String>()
     {
         UsernameInput.Text.Value,
         PasswordInput.Text.Value,
         EmailInput.Text.Value
     },
                                                    x => x.TrueForAll(y => UIHelperUtility.ValidateString(y)),
                                                    (x, y) => y.IsVisible.Value = x);
 }