Files
edx-platform/common/test/acceptance/pages/studio/settings.py
Greg Price 02a233b7e2 Rename URL_PATH to url_path in acceptance code
It's not a constant, and some subclasses will want to make it a
function with @property.
2014-02-06 12:02:48 -05:00

17 lines
312 B
Python

"""
Course Schedule and Details Settings page.
"""
from .course_page import CoursePage
class SettingsPage(CoursePage):
"""
Course Schedule and Details Settings page.
"""
url_path = "settings/details"
def is_browser_on_page(self):
return self.is_css_present('body.view-settings')