public void SetAccountNumber(string AccountNo)
 {
     util.EnterTextIntoElement(locator.GetAccountNumberLocator(), AccountNo);
     logger.Info("Account Number entered is : " + AccountNo);
 }
Beispiel #2
0
 public void SetUserName(string UserName)
 {
     utils.EnterTextIntoElement(locators.GetUserIDLocator(), UserName);
     logger.Info("UserName entered is : " + UserName);
 }
Beispiel #3
0
 public void SetCustomerName(string CustomerName)
 {
     util.EnterTextIntoElement(locators.GetCustomerNameLocator(), CustomerName);
     logger.Info("Customer Name Entered is : " + CustomerName);
 }
Beispiel #4
0
 public void SetCustomerID(string CustomerId)
 {
     util.EnterTextIntoElement(locators.GetCustomerIDLocator(), CustomerId);
     logger.Info("CustomerID entered is : " + CustomerId);
 }
Beispiel #5
0
 public void SetAmount(string Amount)
 {
     util.EnterTextIntoElement(locator.GetAmountLocator(), Amount);
     logger.Info("Amount entered is : " + Amount);
 }