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

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

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

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

            if (page.ApplicantMandatoryFill())
            {
            }
            ;

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

            PropertiesCollection.driver.Quit();
        }