public void ThenUserShouldAbleToAddNewCertificationSuccessfully()
        {
            //Verify Added Certification
            Certification certiobj = new Certification();

            certiobj.VerifyCertification();
        }
            public void AddCertification()
            {
                //Create Extent Report
                test = extent.StartTest("AddCertification");
                //Add profile
                Certification certiobj = new Certification();

                certiobj.EnterCertification();
                certiobj.VerifyCertification();
            }