Files
edx-platform/common/test/acceptance/pages/studio/checklists.py
2018-07-31 12:00:44 -04:00

19 lines
440 B
Python

"""
Course Checklists page.
"""
from common.test.acceptance.pages.studio.course_page import CoursePage
class CourseChecklistsPage(CoursePage):
"""
Course Checklists page.
"""
url_path = "checklists"
def is_browser_on_page(self):
# SFE and SFE-wrapper classes come from studio-frontend and
# wrap content provided by the studio-frontend package
return self.q(css='.SFE .SFE-wrapper').visible