public void EnterWrongToken()
 {
     try
     {
         string OTP = "42150";
         TokenNumText.EnterText(OTP);
     }
     catch (Exception e)
     {
         throw new Exception("Unable to enter the text in phnum .." + e.Message);
     }
 }
 public void EnterTokenNum()
 {
     try
     {
         string OTP = "968576";
         TokenNumText.EnterText(OTP);
         System.Threading.Thread.Sleep(5000);
     }
     catch (Exception e)
     {
         throw new Exception("Unable to enter the text in phnum .." + e.Message);
     }
 }