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

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

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

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

            if (page.ApplicantMandatoryFill())
            {
            }
            ;

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

            PropertiesCollection.driver.Quit();
        }