public void FillOutCertaintyApproval(string customerAddress1, string customerCity, string customerPostcode, string day, string month, string year)
 {
     _bizAddress.SendText(Keys.Tab);
     CompanyAddress.EnterManualAddress(customerAddress1, customerCity, customerPostcode);
     EnterDOB.FillDOB(day, month, year);
     dobField.SendKeys(Keys.Enter);
 }
 public void FillOutCertaintyApproval(string customerAddress1, string customerCity, string customerPostcode, string day, string month, string year, string directorAnswer)
 {
     _bizAddress.SendText(Keys.Tab);
     CompanyAddress.EnterManualAddress(customerAddress1, customerCity, customerPostcode);
     EnterDOB.FillDOB(day, month, year);
     DirectorOfCompany.SelectDirectorCompany(directorAnswer);
     _seeCertainty.Click();
 }
 public void FillOutCertaintyApproval(string customerAddress1, string customerCity, string customerPostcode, string day, string month, string year, string industryType, string creditAmount, string cardProvider)
 {
     _bizAddress.SendText(Keys.Tab);
     CompanyAddress.EnterManualAddress(customerAddress1, customerCity, customerPostcode);
     EnterDOB.FillDOB(day, month, year);
     YourIndustry.SelectDirectorCompany(industryType);
     CardTerminal.SetCreditAmount(creditAmount, cardProvider);
     _seeCertainty.Click();
 }
 public void FillOutYourBusinessPage(string legalEntity, string companyAddress1, string companyCity, string companyPostcode, int howLongVal, string setAnnualTurnover, string fundingPurpose, string businessCustomers)
 {
     LegalEntity.SetLegalEntity(legalEntity);
     CompanyAddress.EnterManualAddress(companyAddress1, companyCity, companyPostcode);
     HowLongTrading.SetTradingTime(howLongVal);
     AnnualTurnover.setAnnualTurnover(setAnnualTurnover);
     NeedForFinance.SelectFundingPurpose(fundingPurpose);
     BusinessCustomers.SetBusinessCustomer(businessCustomers);
     _continueButton.Click();
 }