Merge pull request #14859 from edx/bjacobel/outline-details

Implement minor UI/A11Y fixes for outline
This commit is contained in:
Brian Jacobel
2017-04-18 10:20:09 -04:00
committed by GitHub
4 changed files with 45 additions and 22 deletions

View File

@@ -54,7 +54,7 @@ class CourseOutlinePage(PageObject):
url = None
SECTION_SELECTOR = '.outline-item.section:nth-of-type({0})'
SECTION_TITLES_SELECTOR = '.section-name span'
SECTION_TITLES_SELECTOR = '.section-name h3'
SUBSECTION_SELECTOR = SECTION_SELECTOR + ' .subsection:nth-of-type({1}) .outline-item'
SUBSECTION_TITLES_SELECTOR = SECTION_SELECTOR + ' .subsection .subsection-title'
OUTLINE_RESUME_COURSE_SELECTOR = '.outline-item .resume-right'