def test_is_account_admin_dashboard_page_loaded(self):

        """
        Check if the course dashboard page is loaded
        """
        # initialize
        dashboard_page = CourseAdminDashboardPage(self.driver)
        self.assertTrue(dashboard_page.is_loaded())
        # The Manage People button should be displayed for the selenium
        # user in this test.
        self.assertTrue(dashboard_page.manage_people_button_is_displayed())