EduleyAutomationInstituteRegistrerAndLoginVerificationStepByStep
package com.dev.Eduley;
import baseClass.BaseClass;
import java.awt.AWTException;
import java.util.List;
import org.openqa.selenium.JavascriptExecutor;
import org.testng.Assert;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
import com.github.javafaker.Faker;
import pages.*;
public class EduleyAutomationInstituteRegistrerAndLoginVerificationStepByStep extends BaseClass {
Faker faker = new Faker();
public static String instituteName;
public static String emailid;
public static String password;
public static String emailidSTP;
public static String currentIAP_Url;
JavascriptExecutor js;
private EduleyAutomationInstituteRegisterPage eduleyAutomationInstituteReg;
private EduleyAdminPortal eduleyAdminPortal;
private IAP_STP_VerificationPage iap_StpVerification;
private Mailinator mailinator;
private YopMail yopMail;
private CourseEnrollmentDocumentPage courseEnrollmentDocumentPage;
private StudentsProfileEnrichmentPage studentsProfileEnrichmentPage;
private EduleyNewInstitueLoginPage eduleyNewInstitueLoginPage;
private CohortsCourseCreationAndProfileVerificationPage cohortsCourseCreationAndProfileVerificationPage;
@BeforeMethod(alwaysRun = true)
public void setUp() {
logger.info("Initial setup is in progress");
}
@Test(priority = 0,enabled = true)
public void eduleyInstituteRegisterAndLoginAndSetUpNewInstituteAccount() throws AWTException, InterruptedException{
logger.info("Fill the details in register page and submit");
eduleyAutomationInstituteReg=new EduleyAutomationInstituteRegisterPage(driver);
eduleyAutomationInstituteReg.CheckEduleyInstituteNameBox();
instituteName=faker.name().firstName()+"Academy";
eduleyAutomationInstituteReg.enterInstitutename(instituteName);
eduleyAutomationInstituteReg.enterContactname();
eduleyAutomationInstituteReg.enterCountryDetails();
eduleyAutomationInstituteReg.enterStateDetails();
emailid=faker.name().firstName()+"[email protected]";
logger.info("Email id is : " +emailid);
eduleyAutomationInstituteReg.enterEmailId(emailid);
eduleyAutomationInstituteReg.enterTagLine();
eduleyAutomationInstituteReg.enterPhoneNumber(faker.number().digits(10));
eduleyAutomationInstituteReg.enterAddress();
logger.info("Checking Upload Logo box is enabled or not");
Assert.assertTrue(eduleyAutomationInstituteReg.CheckUploadLogoBoxIsEnabled(), "LaterActivateButton is Enabled");
logger.info("Upload Logo box is enabled");
eduleyAutomationInstituteReg.uploadLogoFromLocal();
logger.info("Checking Upload Footer Logo box is enabled or not");
Assert.assertTrue(eduleyAutomationInstituteReg.CheckUploadFooterLogoBoxIsEnabled(), "LaterActivateButton is Enabled");
logger.info("Upload Footer Logo box is enabled");
eduleyAutomationInstituteReg.uploadFooterLogoFromLocal();
logger.info("Checking Upload Favicon box is enabled or not");
Assert.assertTrue(eduleyAutomationInstituteReg.CheckUploadFaviconBoxIsEnabled(), "LaterActivateButton is Enabled");
logger.info("Upload Favicon Logo box is enabled");
eduleyAutomationInstituteReg.uploadFaviconIconFromLocal();
eduleyAutomationInstituteReg.selectPrimaryColor();
eduleyAutomationInstituteReg.selectSecondaryColor();
eduleyAutomationInstituteReg.clickSubmitButton();
eduleyAutomationInstituteReg.checkEduleyTitleMessageAfterSuccessfullyRegister();
logger.info("Checking Title message received on after successfully register ");
Assert.assertEquals(eduleyAutomationInstituteReg.checkEduleyTitleMessageAfterSuccessfullyRegister(), "We have received your request. You will get login credentials once your institute is approved.","Verifying Registration successfully");
logger.info("Title message received on after successfully register");
logger.info("Login the Eduley Admin portal and active the Institute ");
// launching the new Institute portal homepage
eduleyAdminPortal=new EduleyAdminPortal(driver);
eduleyAdminPortal.launchEduleyAdminPortal(driver);
eduleyAdminPortal.enterAdminUserName();
eduleyAdminPortal.enterAdminPassword();
eduleyAdminPortal.clickLoginButton();
eduleyAdminPortal.clickInstitutes();
eduleyAdminPortal.clickCreatedInstitute(instituteName);
eduleyAdminPortal.enterSchoolTypeDetails();
eduleyAdminPortal.enterFilerAccountNumber(faker.number().digits(8));
eduleyAdminPortal.enterPaymentMethodDetails();
eduleyAdminPortal.enterLanguageDetails();
eduleyAdminPortal.enterCurrencyDetails();
eduleyAdminPortal.clickIsActiveCheckBox();
eduleyAdminPortal.clickIsApprovedCheckBox();
eduleyAdminPortal.clickSaveButton();
logger.info("Checking Institute Active success message received or not ");
Assert.assertEquals(eduleyAdminPortal.checkInstituteActiveSuccessMessage(), "The institute “"+instituteName+"” was changed successfully.","Verifying Institute Activation successfully");
logger.info("Institute Active success message received");
eduleyAdminPortal.clickCreatedInstitute(instituteName);
logger.info("Verification of IAP while clicking forgetPassword");
yopMail = new YopMail(driver);
yopMail.launchYopMail(driver);
yopMail.enterEmail(emailid);
yopMail.getMailAndPassword();
List<String> credentials = yopMail.getMailAndPasswordText();
emailid = credentials.get(0);
password= credentials.get(1);
logger.info(emailid);
logger.info(password);
eduleyNewInstitueLoginPage = new EduleyNewInstitueLoginPage(driver);
eduleyNewInstitueLoginPage.launchedInstituteLoginPortal();
eduleyNewInstitueLoginPage.enterInstituteUserName(emailid);
eduleyNewInstitueLoginPage.enterInstituteUserPassword(password);
eduleyNewInstitueLoginPage.clickInstituteUserLoginButton();
Assert.assertTrue(eduleyNewInstitueLoginPage.SuccessfulMessageOfLoginButton().contains("Welcome back"));
cohortsCourseCreationAndProfileVerificationPage = new CohortsCourseCreationAndProfileVerificationPage(driver);
// creation of new staff member
cohortsCourseCreationAndProfileVerificationPage.clickStaffManagmentButton();
cohortsCourseCreationAndProfileVerificationPage.clickAddNewStaffManagmentButton();
String staff1FirstName = faker.name().firstName();
String staff1LastName = faker.name().lastName();
String staff1EmailID = staff1FirstName.toLowerCase() + "[email protected]";
cohortsCourseCreationAndProfileVerificationPage.enternewStaffLastName(staff1LastName);
cohortsCourseCreationAndProfileVerificationPage.enternewStaffEmailId(staff1EmailID);
cohortsCourseCreationAndProfileVerificationPage.enternewStaffPassword();
cohortsCourseCreationAndProfileVerificationPage.clickNewStaffRolesDropDown();
cohortsCourseCreationAndProfileVerificationPage.clickNewStaffInstrutor();
cohortsCourseCreationAndProfileVerificationPage.clickNewCoInstructorn();
cohortsCourseCreationAndProfileVerificationPage.enternewStaffFirstName(staff1FirstName);
cohortsCourseCreationAndProfileVerificationPage.clickNewStaffCreateButton();
// Assert.assertTrue(cohortsCourseCreationAndProfileVerificationPage.SuccessfulMessageOfStaffCreation());
String staff2FirstName = faker.name().firstName();
String staff2LastName = faker.name().lastName();
String staff2EmailID = staff2FirstName.toLowerCase() + "[email protected]";
cohortsCourseCreationAndProfileVerificationPage.clickAddNewStaffManagmentButton();
cohortsCourseCreationAndProfileVerificationPage.enternewStaffLastName(staff2LastName);
cohortsCourseCreationAndProfileVerificationPage.enternewStaffEmailId(staff2EmailID);
cohortsCourseCreationAndProfileVerificationPage.enternewStaffPassword();
cohortsCourseCreationAndProfileVerificationPage.clickNewStaffRolesDropDown();
cohortsCourseCreationAndProfileVerificationPage.clickNewStaffInstrutor();
cohortsCourseCreationAndProfileVerificationPage.clickNewCoInstructorn();
cohortsCourseCreationAndProfileVerificationPage.enternewStaffFirstName(staff2FirstName);
cohortsCourseCreationAndProfileVerificationPage.clickNewStaffCreateButton();
// Assert.assertTrue(cohortsCourseCreationAndProfileVerificationPage.SuccessfulMessageOfStaffCreation());
//
// cohortsCourseCreationAndProfileVerificationPage.clickProgramManagement();
// cohortsCourseCreationAndProfileVerificationPage.clickAddProgramButton();
// cohortsCourseCreationAndProfileVerificationPage.pageHardRefresh();
// logger.info("Checking Course name box is present or not");
// Assert.assertTrue(cohortsCourseCreationAndProfileVerificationPage.CheckAddCourseBasicInfoCourseNameBox(), "Course name box is displayed");
// logger.info("Course name box is present");
// cohortsCourseCreationAndProfileVerificationPage.enterCourseName();
// logger.info("Checking Course Short Description box is present or not");
// Assert.assertTrue(cohortsCourseCreationAndProfileVerificationPage.CheckAddCourseBasicInfoShortDescriptionBox(), "Course Short Description box is displayed");
// logger.info("Course Short Description box is present");
// cohortsCourseCreationAndProfileVerificationPage.enterCourseShortDescription();
// logger.info("Checking Course Description box is present or not");
// Assert.assertTrue(cohortsCourseCreationAndProfileVerificationPage.CheckAddCourseBasicProgramInfoDescriptionBox(), "Course Description box is displayed");
// logger.info("Course Description box is present");
// logger.info("Checking the Short description box is present or not");
//
// cohortsCourseCreationAndProfileVerificationPage.enterCourseProgramDescription();
// logger.info("Checking Course Students Learn box is present or not");
// Assert.assertTrue(cohortsCourseCreationAndProfileVerificationPage.CheckAddCourseBasicInfoWhatStudentsLearnBox(), "Course Students Learn box is displayed");
// logger.info("Course Students Learn box is present");
// cohortsCourseCreationAndProfileVerificationPage.enterWhatStudentsLearnOurCourse();
// logger.info("Checking Course PreRequisites box is present or not");
// Assert.assertTrue(cohortsCourseCreationAndProfileVerificationPage.CheckAddCourseBasicInfoPreRequisitesBox(), "Course PreRequisites box is displayed");
// logger.info("Course PreRequisites box is present");
// cohortsCourseCreationAndProfileVerificationPage.enterPreRequisites();
// logger.info("Checking Course Level Dropdown is present or not");
// Assert.assertTrue(cohortsCourseCreationAndProfileVerificationPage.CheckAddCourseBasicInfoCourseLevelDropdown(), "Course Level Dropdown box is displayed");
// logger.info("Course Level Dropdown box is present");
// cohortsCourseCreationAndProfileVerificationPage.enterCourseLevelBeginner();
// logger.info("Checking Course Language Dropdown is present or not");
// Assert.assertTrue(cohortsCourseCreationAndProfileVerificationPage.CheckAddCourseBasicInfoCourseLanguageDropdown(), "Course Language Dropdown is displayed");
// logger.info("Course Language Dropdown is present");
// cohortsCourseCreationAndProfileVerificationPage.enterCourseLanguage();
// logger.info("Checking Course Duration Box is present or not");
// Assert.assertTrue(cohortsCourseCreationAndProfileVerificationPage.CheckAddCourseBasicInfoCourseDurationInputbox(), "Course Duration Box is displayed");
// logger.info("Course Duration Box is present");
// cohortsCourseCreationAndProfileVerificationPage.enterCourseDuration();
// logger.info("Checking Course Instructor Box is present or not");
// Assert.assertTrue(cohortsCourseCreationAndProfileVerificationPage.CheckAddCourseBasicInfoInstructorInputbox(), "Course Instructor Box is displayed");
// logger.info("Course Instructor Box is present");
// cohortsCourseCreationAndProfileVerificationPage.enterInstrutor();
// logger.info("Checking Course Reviewer Box is present or not");
//// Assert.assertTrue(cohortsCourseCreationAndProfileVerificationPage.CheckAddCourseBasicInfoAddReviewerInputbox(), "Course Reviewer Box is displayed");
//// logger.info("Course Reviewer Box is present");
// cohortsCourseCreationAndProfileVerificationPage.enterReviewer();
// logger.info("Checking Course Category Dropdown is present or not");
// Assert.assertTrue(cohortsCourseCreationAndProfileVerificationPage.CheckAddCourseBasicInfoCourseCategoryDropdown(), "Course Category Dropdown is displayed");
// logger.info("Course Category Dropdown is present");
// cohortsCourseCreationAndProfileVerificationPage.enterCourseCategoryTechnology();
// logger.info("Checking Course Graduation weeks inputbox is present or not");
// Assert.assertTrue(cohortsCourseCreationAndProfileVerificationPage.CheckAddCourseBasicInfoPostGraduationWeeksInputbox(), "Course Graduation weeks inputbox is displayed");
// logger.info("Course Graduation weeks inputbox is present");
// cohortsCourseCreationAndProfileVerificationPage.enterAccessPostGraduationWeeks();
// cohortsCourseCreationAndProfileVerificationPage.clickCourseCompletionAwardYes();
// cohortsCourseCreationAndProfileVerificationPage.clickandValidateFreeCourseCheckbox();
// //logger.info("Checking Price Of Course inputbox is present or not");
// //Assert.assertTrue(cohortsCourseCreationAndProfileVerificationPage.CheckAddCourseBasicInfoPriceOfCourseInputbox(), "Course Price Of Course inputbox is displayed");
// //logger.info("Price Of Course inputbox is present");
// //cohortsCourseCreationAndProfileVerificationPage.enterPriceOfCourse();
// cohortsCourseCreationAndProfileVerificationPage.clickCourseRunsInCohortsYes();
// cohortsCourseCreationAndProfileVerificationPage.clickCourseTypeFullTimeRadioButton();
// cohortsCourseCreationAndProfileVerificationPage.clickEnableAttendanceCheckbox();
// cohortsCourseCreationAndProfileVerificationPage.clickBasicInfoPageNextButton();
// //Curriculam page
// cohortsCourseCreationAndProfileVerificationPage.clickCurriculamAddSectionButton();
// Assert.assertTrue(cohortsCourseCreationAndProfileVerificationPage.CheckAddCourseCurriculamAddSectionInputbox(), "Add Section inputbox is displayed");
// logger.info("Add Section inputbox is present");
// cohortsCourseCreationAndProfileVerificationPage.enterCurriculamAddSectionInputbox();
// logger.info("Checking Add Section inputbox is present or not");
//
//// cohortsCourseCreationAndProfileVerificationPage.clickCurriculamAddSectionTickIcon();
// //Lesson
// cohortsCourseCreationAndProfileVerificationPage.clickCurriculamAddContentButton();
// cohortsCourseCreationAndProfileVerificationPage.clickContentTypeLessonRadioButton();
// logger.info("Checking Add Course Lesson Name box is present or not");
// Assert.assertTrue(cohortsCourseCreationAndProfileVerificationPage.CheckAddCourseLessonNamebox(), "Add Course Lesson Name box is displayed");
// logger.info("Add Course Lesson Name box is present");
// cohortsCourseCreationAndProfileVerificationPage.enterLessonName();
// cohortsCourseCreationAndProfileVerificationPage.uploadLessonAttachmentFile();
// logger.info("Checking Add Course Lesson Description box is present or not");
// Assert.assertTrue(cohortsCourseCreationAndProfileVerificationPage.CheckAddCourseLessonDescriptionBox(), "Add Course Lesson Description box is displayed");
// logger.info("Add Course Lesson Description box is present");
// cohortsCourseCreationAndProfileVerificationPage.enterLessonDescription();
// logger.info("Checking Add Course Start Date Calander box is present or not");
//
//
// Assert.assertTrue(cohortsCourseCreationAndProfileVerificationPage.CheckAddCourseStartDateCalanderInputbox(), "Add Course Start Date Calander box is displayed");
// logger.info("Add Course Start Date Calander box is present");
//// cohortsCourseCreationAndProfileVerificationPage.enterCourseTimeAllotmant();
// cohortsCourseCreationAndProfileVerificationPage.clickSkipContentCheckbox();
// cohortsCourseCreationAndProfileVerificationPage.clickSaveContentButton();
// //Quiz
// cohortsCourseCreationAndProfileVerificationPage.clickCurriculamAddContentButton();
// cohortsCourseCreationAndProfileVerificationPage.clickContentTypeQuizRadioButton();
// cohortsCourseCreationAndProfileVerificationPage.CheckAddCourseQuizTitlebox();
// cohortsCourseCreationAndProfileVerificationPage.enterQuizTitle();
// cohortsCourseCreationAndProfileVerificationPage.CheckAddCourseQuizDescriptionbox();
// cohortsCourseCreationAndProfileVerificationPage.enterQuizDescription();
//// cohortsCourseCreationAndProfileVerificationPage.CheckAddCourseQuizTimeAllowedbox();
// cohortsCourseCreationAndProfileVerificationPage.enterQuizTimeAllowed();
// cohortsCourseCreationAndProfileVerificationPage.clickNoOfAttemptsCheckbox();
// cohortsCourseCreationAndProfileVerificationPage.enterQuizNoOfAttempts();
// //cohortsCourseCreationAndProfileVerificationPage.clickQuizHaveMCQquestionsCheckbox();
// cohortsCourseCreationAndProfileVerificationPage.CheckQuizDisplayQuestionsInputbox();
// cohortsCourseCreationAndProfileVerificationPage.enterQuizDisplayQuestions();
// cohortsCourseCreationAndProfileVerificationPage.CheckQuizMarksPerMCQInputbox();
// cohortsCourseCreationAndProfileVerificationPage.enterQuizMarkPerMCQ();
// cohortsCourseCreationAndProfileVerificationPage.CheckQuizTotalMarksInputbox();
// cohortsCourseCreationAndProfileVerificationPage.enterQuizTotalMarks();
// cohortsCourseCreationAndProfileVerificationPage.CheckQuizPassinglMarksInputbox();
// cohortsCourseCreationAndProfileVerificationPage.enterQuizPassingMarks();
// cohortsCourseCreationAndProfileVerificationPage.CheckQuizStartDateCalanderInputbox();
// cohortsCourseCreationAndProfileVerificationPage.enterQuizStartDate();
// cohortsCourseCreationAndProfileVerificationPage.clickQuizSkipContentCheckbox();
// cohortsCourseCreationAndProfileVerificationPage.CheckQuizMCQButton();
// cohortsCourseCreationAndProfileVerificationPage.CheckQuizAddQuestionButton();
// cohortsCourseCreationAndProfileVerificationPage.clickQuizAddQuestionButton();
// cohortsCourseCreationAndProfileVerificationPage.CheckQuizQuestionInputbox();
// cohortsCourseCreationAndProfileVerificationPage.enterQuizQuestion1();
// cohortsCourseCreationAndProfileVerificationPage.uploadQuizMediaImage();
// cohortsCourseCreationAndProfileVerificationPage.CheckQuizAddOptionButton();
// cohortsCourseCreationAndProfileVerificationPage.clickQuizAddOptionButton();
// cohortsCourseCreationAndProfileVerificationPage.enterQuizQuestion1Option1();
// cohortsCourseCreationAndProfileVerificationPage.clickQuizCorrectAnswerOption1Button();
// cohortsCourseCreationAndProfileVerificationPage.clickQuizAddOptionButton();
// cohortsCourseCreationAndProfileVerificationPage.enterQuizQuestion1Option2();
// cohortsCourseCreationAndProfileVerificationPage.clickQuizAddOptionButton();
// cohortsCourseCreationAndProfileVerificationPage.enterQuizQuestion1Option3();
// cohortsCourseCreationAndProfileVerificationPage.clickQuizAddOptionButton();
// cohortsCourseCreationAndProfileVerificationPage.enterQuizQuestion1Option4();
// cohortsCourseCreationAndProfileVerificationPage.clickQuizPageSubmitButton();
// cohortsCourseCreationAndProfileVerificationPage.clickQuizAddQuestionButton();
// cohortsCourseCreationAndProfileVerificationPage.enterQuizQuestion2();
// cohortsCourseCreationAndProfileVerificationPage.uploadQuizMediaImageQ2();
// cohortsCourseCreationAndProfileVerificationPage.clickQuizAddOptionButtonQ2();
// cohortsCourseCreationAndProfileVerificationPage.enterQuizQuestion2Option1();
// cohortsCourseCreationAndProfileVerificationPage.clickQuizAddOptionButton();
// cohortsCourseCreationAndProfileVerificationPage.enterQuizQuestion2Option2();
// cohortsCourseCreationAndProfileVerificationPage.clickQuizAddOptionButton();
// cohortsCourseCreationAndProfileVerificationPage.enterQuizQuestion2Option3();
// cohortsCourseCreationAndProfileVerificationPage.clickQuizAddOptionButton();
// cohortsCourseCreationAndProfileVerificationPage.enterQuizQuestion2Option4();
// cohortsCourseCreationAndProfileVerificationPage.clickQuizCorrectAnswerOption3Button();
// cohortsCourseCreationAndProfileVerificationPage.clickQuizPageSubmitButton();
// cohortsCourseCreationAndProfileVerificationPage.clickQuizSaveContentButton();
//
// //Quota
// cohortsCourseCreationAndProfileVerificationPage.clickCurriculamAddSectionButton();
// cohortsCourseCreationAndProfileVerificationPage.clickCurriculamAddContentButton();
// cohortsCourseCreationAndProfileVerificationPage.clickContentTypeAssignmentRadioButton();
// cohortsCourseCreationAndProfileVerificationPage.CheckAddCourseAssignmentNamebox();
// cohortsCourseCreationAndProfileVerificationPage.enterAssignmentName();
// cohortsCourseCreationAndProfileVerificationPage.CheckAddCourseAssignmentDescriptionbox();
// cohortsCourseCreationAndProfileVerificationPage.enterAssignmentDescription();
// cohortsCourseCreationAndProfileVerificationPage.uploadMediaAssignmentfile();
// cohortsCourseCreationAndProfileVerificationPage.CheckAddCourseAssignmentTimeAllotmentInputbox();
//// cohortsCourseCreationAndProfileVerificationPage.enterAssignmentTimeAllotment();
// cohortsCourseCreationAndProfileVerificationPage.scroll();
// cohortsCourseCreationAndProfileVerificationPage.enterQuotaSatartDate();
// cohortsCourseCreationAndProfileVerificationPage.CheckAddCourseAssignmentTotalMarksInputbox();
// cohortsCourseCreationAndProfileVerificationPage.enterAssignmentTotalMarks();
// cohortsCourseCreationAndProfileVerificationPage.CheckAssignmentSaveContentButton();
// cohortsCourseCreationAndProfileVerificationPage.clickAssignmentSaveContentButton();
//
// //Homework
// cohortsCourseCreationAndProfileVerificationPage.clickCurriculamAddContentButton();
// cohortsCourseCreationAndProfileVerificationPage.clickContentTypeHomeworkRadioButton();
// cohortsCourseCreationAndProfileVerificationPage.CheckAddCourseHomeworkNamebox();
// cohortsCourseCreationAndProfileVerificationPage.enterHomeworkName();
// cohortsCourseCreationAndProfileVerificationPage.CheckAddCourseHomeworkDescriptionbox();
// cohortsCourseCreationAndProfileVerificationPage.enterHomeworkDescription();
// cohortsCourseCreationAndProfileVerificationPage.uploadMediaHomeworkfile();
// cohortsCourseCreationAndProfileVerificationPage.clickHomeworkCanSkipContentCheckbox();
// cohortsCourseCreationAndProfileVerificationPage.clickHomeworkIsGatedContentCheckbox();
// cohortsCourseCreationAndProfileVerificationPage.clickHomeworkSubmissionTypeSubjectiveRadioButton();
// cohortsCourseCreationAndProfileVerificationPage.clickHomeworkSubmissionTypeFileUploadRadioButton();
// cohortsCourseCreationAndProfileVerificationPage.CheckAddCourseHomeworkTotalMarksInputbox();
// cohortsCourseCreationAndProfileVerificationPage.enterHomeworkTotalMarks();
// cohortsCourseCreationAndProfileVerificationPage.CheckHomeworkSaveContentButton();
// cohortsCourseCreationAndProfileVerificationPage.clickHomeworkSaveContentButton();
// cohortsCourseCreationAndProfileVerificationPage.clickCurriculamPageNextButton();
//
// //Configuration page
// cohortsCourseCreationAndProfileVerificationPage.clickConfigurationPageNextButton();
//
// //Media page
// cohortsCourseCreationAndProfileVerificationPage.uploadMediaPosterImage();
// cohortsCourseCreationAndProfileVerificationPage.uploadMediaIntroductionVideo();
// cohortsCourseCreationAndProfileVerificationPage.clickMediaPageNextButton();
//
// //Publish page
// cohortsCourseCreationAndProfileVerificationPage.clickPublishstatusArchive();
// cohortsCourseCreationAndProfileVerificationPage.clickPublishstatusDraft();
// cohortsCourseCreationAndProfileVerificationPage.clickPublishstatusLive();
// cohortsCourseCreationAndProfileVerificationPage.clickTranscriptedCourseYesButton();
// cohortsCourseCreationAndProfileVerificationPage.clickPublishPageSaveButton();
// cohortsCourseCreationAndProfileVerificationPage.highlightCohortedButton();
}
}