public void GivenUserShouldAbleToDeleteCertificationSucessfully() { //Delete Certification Certification certiobj = new Certification(); certiobj.DeleteCertification(); }
public void Addcertification() { Certification CertificObj = new Certification(); //Navigate to cerification tab test = extent.StartTest("Cerification tab clicked"); CertificObj.NavigateToCertification(); //Add certification test = extent.StartTest("Certification has been added"); CertificObj.AddCertification(); //Verify Certification added test = extent.StartTest("Verify Certification has been added"); CertificObj.VerifyAddCertification(); //Edit Certification test = extent.StartTest("Edit Certification "); CertificObj.EditCertification(); //Verify Certification updated test = extent.StartTest("Verify Certification has been updated"); CertificObj.VerifyEditCertification(); // Certification deleted test = extent.StartTest(" Certification has been deleted"); CertificObj.DeleteCertification(); //Verify Certification has been deleted test = extent.StartTest("Verify Certification has been deleted"); CertificObj.VerifyDeleteCertification(); }
public void CertificationPage() { test = extent.StartTest("Certification test started"); Certification certification = new Certification(); certification.AddCertification(); certification.UpdateCertification(); certification.DeleteCertification(); }
public void DeleteCertification() { //Create Extent Report test = extent.StartTest("DeleteCertification"); //Delete profile Certification certiobj = new Certification(); certiobj.DeleteCertification(); }