diff --git a/common/test/acceptance/tests/lms/test_lms_instructor_dashboard.py b/common/test/acceptance/tests/lms/test_lms_instructor_dashboard.py index c150742873..c0757f2605 100644 --- a/common/test/acceptance/tests/lms/test_lms_instructor_dashboard.py +++ b/common/test/acceptance/tests/lms/test_lms_instructor_dashboard.py @@ -706,34 +706,6 @@ class DataDownloadsWithMultipleRoleTests(BaseInstructorDashboardTest): super(DataDownloadsWithMultipleRoleTests, self).setUp() self.course_fixture = CourseFixture(**self.course_info).install() - @ddt.data(['staff'], ['instructor']) - def test_list_student_profile_information(self, role): - """ - Scenario: List enrolled students' profile information - Given I am "" for a course - When I click "List enrolled students' profile information" - Then I see a table of student profiles - Examples: - | Role | - | instructor | - | staff | - """ - username, user_id, email, __ = self.log_in_as_instructor( - global_staff=False, - course_access_roles=role - ) - instructor_dashboard_page = self.visit_instructor_dashboard() - data_download_section = instructor_dashboard_page.select_data_download() - - data_download_section.enrolled_student_profile_button.click() - instructor_dashboard_page.wait_for_ajax() - student_profile_info = data_download_section.student_profile_information - - self.assertNotIn(student_profile_info, [u'', u'Loading']) - expected_data = [user_id, username, email] - for datum in expected_data: - self.assertIn(str(datum), student_profile_info[0].split('\n')) - @ddt.data(['staff'], ['instructor']) def test_list_student_profile_information_for_large_course(self, role): """