Fixed test course rerun failing on Chrome

This commit is contained in:
raeeschachar
2016-01-19 19:25:41 +05:00
parent 22e01a8c95
commit d440e209e1
3 changed files with 15 additions and 5 deletions

View File

@@ -67,9 +67,10 @@ class CourseRerunTest(StudioCourseTest):
Then I see one html component with the content 'Test Content'
"""
course_info = (self.course_info['org'], self.course_info['number'], self.course_info['run'])
updated_course_info = course_info[0] + "+" + course_info[1] + "+" + course_info[2]
self.dashboard_page.visit()
self.dashboard_page.create_rerun(self.course_info['display_name'])
self.dashboard_page.create_rerun(updated_course_info)
rerun_page = CourseRerunPage(self.browser, *course_info)
rerun_page.wait_for_page()