Files
edx-platform/common/test/acceptance/pages/studio/checklists.py
Will Daly 079f3aa5f4 Updated bok choy page objects setup.py
Fix bug in url method of register page object
Add dist directories to gitignore
2014-02-04 14:32:42 -05:00

17 lines
272 B
Python

"""
Course checklists page.
"""
from .course_page import CoursePage
class ChecklistsPage(CoursePage):
"""
Course Checklists page.
"""
URL_PATH = "checklists"
def is_browser_on_page(self):
return self.is_css_present('body.view-checklists')