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

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

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

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

            if (page.ApplicantMandatoryFill())
            {
            }
            ;

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

            PropertiesCollection.driver.Quit();
        }