17 lines
267 B
Python
17 lines
267 B
Python
"""
|
|
Course Textbooks page.
|
|
"""
|
|
|
|
from .course_page import CoursePage
|
|
|
|
|
|
class TextbooksPage(CoursePage):
|
|
"""
|
|
Course Textbooks page.
|
|
"""
|
|
|
|
url_path = "textbooks"
|
|
|
|
def is_browser_on_page(self):
|
|
return self.is_css_present('body.view-textbooks')
|