Commit 2a3c3280 by sarahkf Committed by GitHub

Merge pull request #15670 from edx/sarahkf/fix-flaky-proctoring-tests

Fixing flaky edx-proctoring acceptance tests
parents 20d67a5f 354b8a4d
......@@ -119,9 +119,11 @@ class InstructorDashboardPage(CoursePage):
return ecommerce_section
def is_rescore_unsupported_message_visible(self):
return u'This component cannot be rescored.' in unicode(
self.q(css='.request-response-error').html
)
if (self.q(css='.request-response-error').present):
return u'This component cannot be rescored.' in unicode(
self.q(css='.request-response-error').html
)
return False
@staticmethod
def get_asset_path(file_name):
......
......@@ -285,6 +285,7 @@ class ProctoredExamTest(UniqueCourseTest):
self.assertTrue(self.courseware_page.is_timer_bar_present)
self.courseware_page.stop_timed_exam()
self.courseware_page.wait_for_page()
self.assertTrue(self.courseware_page.has_submitted_exam_message())
LogoutPage(self.browser).visit()
......
......@@ -395,8 +395,8 @@ class ProctoredExamsTest(BaseInstructorDashboardTest):
# Stop the timed exam.
self.courseware_page.stop_timed_exam()
LogoutPage(self.browser).visit()
@skip("EDUCATOR-949")
def test_can_add_remove_allowance(self):
"""
Make sure that allowances can be added and removed.
......@@ -426,7 +426,6 @@ class ProctoredExamsTest(BaseInstructorDashboardTest):
# Then, the added record should be visible
self.assertTrue(allowance_section.is_allowance_record_visible)
@skip("EDUCATOR-551, EDUCATOR-949")
def test_can_reset_attempts(self):
"""
Make sure that Exam attempts are visible and can be reset.
......@@ -1375,7 +1374,6 @@ class StudentAdminTest(BaseInstructorDashboardTest):
self.username, _ = self.log_in_as_instructor()
self.instructor_dashboard_page = self.visit_instructor_dashboard()
@skip("EDUCATOR-552, EDUCATOR-949")
def test_rescore_nonrescorable(self):
student_admin_section = self.instructor_dashboard_page.select_student_admin(StudentSpecificAdmin)
student_admin_section.set_student_email_or_username(self.username)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment