Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
2a3c3280
Commit
2a3c3280
authored
Aug 01, 2017
by
sarahkf
Committed by
GitHub
Aug 01, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #15670 from edx/sarahkf/fix-flaky-proctoring-tests
Fixing flaky edx-proctoring acceptance tests
parents
20d67a5f
354b8a4d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
6 deletions
+7
-6
common/test/acceptance/pages/lms/instructor_dashboard.py
+5
-3
common/test/acceptance/tests/lms/test_lms_courseware.py
+1
-0
common/test/acceptance/tests/lms/test_lms_instructor_dashboard.py
+1
-3
No files found.
common/test/acceptance/pages/lms/instructor_dashboard.py
View file @
2a3c3280
...
...
@@ -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
):
...
...
common/test/acceptance/tests/lms/test_lms_courseware.py
View file @
2a3c3280
...
...
@@ -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
()
...
...
common/test/acceptance/tests/lms/test_lms_instructor_dashboard.py
View file @
2a3c3280
...
...
@@ -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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment