def test_AddExercise(self):
    	create_exercise_obj = LandingPage(self.driver)
        create_exercise_obj.loginPro()

        create_exercise_obj = ProHomePage(self.driver)
        create_exercise_obj.switchToExercises()

        create_exercise_obj = ExerciseListPage(self.driver)
        create_exercise_obj.addExercise()
    def test_addDescription(self):
        add_description_obj = LandingPage(self.driver)
        add_description_obj.loginPro()

        add_description_obj = ProHomePage(self.driver)
        add_description_obj.switchToExercises()

        add_description_obj = ExerciseListPage(self.driver)
        add_description_obj.switch_exerciseList()

        add_description_obj = ExerciseOverviewPage(self.driver)
        add_description_obj.addDescription()
    def test_updateExerciseName(self):
        update_ExcerciseName = LandingPage(self.driver)
        update_ExcerciseName.loginPro()

        update_ExcerciseName = ProHomePage(self.driver)
        update_ExcerciseName.switchToExercises()

        update_ExcerciseName = ExerciseListPage(self.driver)
        update_ExcerciseName.switch_exerciseList()

        update_ExcerciseName = ExerciseOverviewPage(self.driver)
        update_ExcerciseName.updateExerciseName()