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

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

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

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

            if (page.ApplicantMandatoryFill())
            {
            }
            ;

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

            PropertiesCollection.driver.Quit();
        }