public void EnterProfileDetails()
        {
            //Starting Extent report
            ReportHelpers.test = ReportHelpers.extent.StartTest("Entering Profile details");

            //Created object to interact with HomePage and SignInPage classes and their methods
            HomePage   HomePageObj   = new HomePage();
            SignInPage SignInPageObj = new SignInPage();

            //Called objects to run methods of these classes
            HomePageObj.Open();
            HomePageObj.OpenLoginForm();
            SignInPageObj.LogInSteps();

            //Created object to interact with MainProfileSection class and its methods
            MainProfileSection MainProfileSectionObj = new MainProfileSection();

            //Called object to run MainProfileSection class methods for Language tab
            MainProfileSectionObj.ProfileLanguageTab();
            MainProfileSectionObj.EnterProfileLanguage();
            MainProfileSectionObj.SuccessMessage();
            MainProfileSectionObj.VerifyEnterProfileLanguage();

            //Called object to run MainProfileSection class methods for Skill tab
            MainProfileSectionObj.ProfileSkillTab();
            MainProfileSectionObj.EnterProfileSkill();
            MainProfileSectionObj.SuccessMessage();
            MainProfileSectionObj.VerifyEnterProfileSkills();

            //Called object to run MainProfileSection class methods for Education tab
            MainProfileSectionObj.ProfileEducationTab();
            MainProfileSectionObj.EnterProfileEducation();
            MainProfileSectionObj.SuccessMessage();
            MainProfileSectionObj.VerifyEnterProfileEducation();

            //Called object to run MainProfileSection class methods for Certification tab
            MainProfileSectionObj.ProfileCertificationTab();
            MainProfileSectionObj.EnterProfileCertification();
            MainProfileSectionObj.SuccessMessage();
            MainProfileSectionObj.VerifyEnterProfileCertifications();
        }
Ejemplo n.º 2
0
        public void DeleteProfile()
        {
            //Starting Extent report
            ReportHelpers.test = ReportHelpers.extent.StartTest("Deleting Profile entries");

            //Created object to interact with HomePage and SignInPage classes and their methods
            HomePage   HomePageObj   = new HomePage();
            SignInPage SignInPageObj = new SignInPage();

            //Called objects to run methods of these classes
            HomePageObj.Open();
            HomePageObj.OpenLoginForm();
            SignInPageObj.LogInSteps();

            //Created object to interact with ManageListings class and its methods
            MainProfileSection MainProfileSectionObj = new MainProfileSection();

            //Called object to run DeleteProfile and VerifyDeleteProfile methods
            MainProfileSectionObj.DeleteProfile();
            MainProfileSectionObj.VerifyDeleteProfile();
        }
 public ProfileLanguageSD()
 {
     MainProfileSectionObj = new MainProfileSection();
 }
Ejemplo n.º 4
0
 public ProfileSkillSD()
 {
     MainProfileSectionObj = new MainProfileSection();
 }
Ejemplo n.º 5
0
 public ProfileCertificationsSD()
 {
     MainProfileSectionObj = new MainProfileSection();
 }
Ejemplo n.º 6
0
 public ProfileEducationSD()
 {
     MainProfileSectionObj = new MainProfileSection();
 }