Dashboard styling cleanup/changes, including:
- reversing the positions of the sidebar and course listing - html for new social icons (not currently wired up) - new actions dropdown for unenrollment and email settings - partial reorganization of dashboard.scss styles - text fix for unenrollment - added missing endif, p/hgroup closures - reverted la.course-item - removed extra operator - fixed broken bok choy test
This commit is contained in:
@@ -46,10 +46,10 @@ class DashboardPage(PageObject):
|
||||
"""
|
||||
def _get_course_name(el):
|
||||
# The first component in the link text is the course number
|
||||
_, course_name = el.text.split(' ', 1)
|
||||
course_name = el.text
|
||||
return course_name
|
||||
|
||||
return self.q(css='section.info > hgroup > h3 > a').map(_get_course_name).results
|
||||
return self.q(css='h3.course-title > a').map(_get_course_name).results
|
||||
|
||||
@property
|
||||
def full_name(self):
|
||||
|
||||
Reference in New Issue
Block a user