public string CompleteCustomer_Single_NoChild_NoPet_Correct(IWebDriver driver) { customerEntity = repository.GetCustomer("Single"); summary.AccessToStep1(driver); customer.IntroduceFirstName(driver, customerEntity.FirstName); customer.IntroduceLastName(driver, customerEntity.LastName); customer.IntroduceBirthday(driver, customerEntity.Day, customerEntity.Month, customerEntity.Year); customer.IntroduceMatitalStatus(driver, customerEntity.MaritalStatus); customer.IntroducePostCode(driver, customerEntity.PostCode); customer.IntroduceNumber(driver, customerEntity.Address1); customer.IntroduceStreet(driver, customerEntity.Address2); customer.IntroduceVillage(driver, customerEntity.Town); customer.IntroducePhone(driver, customerEntity.Telephone); customer.ClickOnNext(driver); childrenExisting.ClickOnNo(driver); petsExisting.ClickOnNo(driver); return(driver.Url); }