public void WhenIAddEducation() { education = new ProfileEducation(driver); //start test // ExtentReport.test = ExtentReport.extent.StartTest("Add Education"); education.AddEducation(); }
public void TestProfileEducation() { test = extent.StartTest("Add/Update/Delete education details"); GlobalDefinitions.ExcelLib.PopulateInCollection(Base.ExcelPathProfileDetail, "Education"); ProfileEducation profileEducation = new ProfileEducation(); profileEducation.NavigateToEducationPage(); profileEducation.AddEducation(); profileEducation.ValidateAddedEducation(); profileEducation.DeleteEducation(); profileEducation.ValidateDeletedEducation(); profileEducation.UpdateAddedEducation(); profileEducation.ValidateUpdatedEducation(); }