//[TestMethod]
        public void ShortCustomerCareRepresentativeSpanish()
        {
            Console.WriteLine(string.Format("Interessent {0}", CustomerCareRepresentativeSpanish.Name));
            PropertiesCollection.OpenBrowser(CustomerCareRepresentativeSpanish.Url);
            CustomerCareRepresentativeSpanish page = new CustomerCareRepresentativeSpanish();

            if (page.InteressentMandatoryFill())
            {
                //foreach (TestResultInPage result in page.TestResultInPages) Console.WriteLine(result.Report());
            }

            PropertiesCollection.driver.Quit();
        }
        public void ApplicantMandatoryFillCustomerCareRepresentativeSpanish()
        {
            Console.WriteLine(string.Format("{0} New Applicant Process Test", CustomerCareRepresentativeSpanish.Name));

            PropertiesCollection.OpenBrowser(ApplicationForm.Url(CustomerCareRepresentativeSpanish.JobAlias));
            CustomerCareRepresentativeSpanish page = new CustomerCareRepresentativeSpanish();

            if (page.ApplicantMandatoryFill())
            {
            }
            ;

            //foreach (TestResultInPage result in page.TestResultInPages) Console.WriteLine(result.Report());

            PropertiesCollection.driver.Quit();
        }