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
6e6c7568
Commit
6e6c7568
authored
Aug 27, 2015
by
Chris Rodriguez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bokchoy test fixes
parent
917947d8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
common/test/acceptance/pages/lms/course_nav.py
+3
-3
No files found.
common/test/acceptance/pages/lms/course_nav.py
View file @
6e6c7568
...
@@ -94,7 +94,7 @@ class CourseNavPage(PageObject):
...
@@ -94,7 +94,7 @@ class CourseNavPage(PageObject):
return
return
# Convert list indices (start at zero) to CSS indices (start at 1)
# Convert list indices (start at zero) to CSS indices (start at 1)
subsection_css
=
"nav .chapter-content-container:nth-of-type({0}) .chapter-menu
a
:nth-of-type({1})"
.
format
(
subsection_css
=
"nav .chapter-content-container:nth-of-type({0}) .chapter-menu
.menu-item
:nth-of-type({1})"
.
format
(
sec_index
+
1
,
subsec_index
+
1
sec_index
+
1
,
subsec_index
+
1
)
)
...
@@ -140,7 +140,7 @@ class CourseNavPage(PageObject):
...
@@ -140,7 +140,7 @@ class CourseNavPage(PageObject):
"""
"""
# Retrieve the subsection title for the section
# Retrieve the subsection title for the section
# Add one to the list index to get the CSS index, which starts at one
# Add one to the list index to get the CSS index, which starts at one
subsection_css
=
'nav .chapter-content-container:nth-of-type({0}) .chapter-menu a p:nth-of-type(1)'
.
format
(
subsection_css
=
'nav .chapter-content-container:nth-of-type({0}) .chapter-menu
.menu-item
a p:nth-of-type(1)'
.
format
(
section_index
section_index
)
)
...
@@ -174,7 +174,7 @@ class CourseNavPage(PageObject):
...
@@ -174,7 +174,7 @@ class CourseNavPage(PageObject):
(the user could go to a section, then expand another tab).
(the user could go to a section, then expand another tab).
"""
"""
current_section_list
=
self
.
q
(
css
=
'nav .chapter.is-open .group-heading'
)
.
text
current_section_list
=
self
.
q
(
css
=
'nav .chapter.is-open .group-heading'
)
.
text
current_subsection_list
=
self
.
q
(
css
=
'nav .chapter-content-container
a.active
p'
)
.
text
current_subsection_list
=
self
.
q
(
css
=
'nav .chapter-content-container
.menu-item.active a
p'
)
.
text
if
len
(
current_section_list
)
==
0
:
if
len
(
current_section_list
)
==
0
:
self
.
warning
(
"Could not find the current section"
)
self
.
warning
(
"Could not find the current section"
)
...
...
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