17 lines
264 B
Python
17 lines
264 B
Python
"""
|
|
Pages page for a course.
|
|
"""
|
|
|
|
from .course_page import CoursePage
|
|
|
|
|
|
class PagesPage(CoursePage):
|
|
"""
|
|
Pages page for a course.
|
|
"""
|
|
|
|
url_path = "tabs"
|
|
|
|
def is_browser_on_page(self):
|
|
return self.q(css='body.view-static-pages').present
|