Files
edx-platform/common/test/acceptance/pages/studio/export.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
252 B
Python

"""
Course Export page.
"""
from .course_page import CoursePage
class ExportPage(CoursePage):
"""
Course Export page.
"""
url_path = "export"
def is_browser_on_page(self):
return self.is_css_present('body.view-export')