public void FillOutCertaintyApprovalAuto(string customerPostCode, string day, string month, string year, string directorAnswer) { CompanyAddress.EnterAutoAddress(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 directorAnswer) { _bizAddress.SendText(Keys.Tab); CompanyAddress.EnterManualAddress(customerAddress1, customerCity, customerPostcode); EnterDOB.FillDOB(day, month, year); DirectorOfCompany.SelectDirectorCompany(directorAnswer); _seeCertainty.Click(); }
public void FillOutCertaintyApprovalAuto(string customerPostCode, string day, string month, string year, string directorAnswer, string industryType, string creditAmount, string cardProvider) { CompanyAddress.EnterAutoAddress(customerPostCode); EnterDOB.FillDOB(day, month, year); DirectorOfCompany.SelectDirectorCompany(directorAnswer); YourIndustry.SelectDirectorCompany(industryType); CardTerminal.SetCreditAmount(creditAmount, cardProvider); dobField.SendKeys(Keys.Enter); _seeCertainty.Click(); }
public void FillOutCertaintyApproval(string customerAddress1, string customerCity, string customerPostcode, string day, string month, string year, string directorAnswer, string industryType, string creditAmount, string cardProvider) { _bizAddress.SendText(Keys.Tab); CompanyAddress.EnterManualAddress(customerAddress1, customerCity, customerPostcode); EnterDOB.FillDOB(day, month, year); DirectorOfCompany.SelectDirectorCompany(directorAnswer); YourIndustry.SelectDirectorCompany(industryType); CardTerminal.SetCreditAmount(creditAmount, cardProvider); dobField.SendKeys(Keys.Enter); }