def visit_coach_dashboard(self):
     """
     Visits the instructor dashboard.
     """
     coach_dashboard_page = CoachDashboardPage(self.browser, self.course_id)
     coach_dashboard_page.visit()
     return coach_dashboard_page
示例#2
0
 def setUp(self):
     super(CreateCCXCoachTest, self).setUp()
     self.course_info.update({"settings": {"enable_ccx": "true"}})
     self.course_fixture = CourseFixture(**self.course_info).install()
     self.coach_dashboard_page = CoachDashboardPage(self.browser,
                                                    self.course_id)