Пример #1
0
 public void InsertNumber(string invoiceNo = null, string orderNo = null, string quoteNo = null, string refrenceNo = null)
 {
     if (!string.IsNullOrEmpty(invoiceNo))
     {
         InvoiceNumber.SendKeys(invoiceNo);
     }
     if (!string.IsNullOrEmpty(orderNo))
     {
         OrderNumber.SendKeys(orderNo);
     }
     if (!string.IsNullOrEmpty(quoteNo))
     {
         QuotaNo.SendKeys(quoteNo);
     }
     if (!string.IsNullOrEmpty(refrenceNo))
     {
         RefrenceNo.SendKeys(refrenceNo);
     }
 }