This commit updates miscellaneous files in common. These keys are now objects with a limited interface, and the particular internal representation is managed by the data storage layer (the modulestore). For the LMS, there should be no outward-facing changes to the system. The keys are, for now, a change to internal representation only. For Studio, the new serialized form of the keys is used in urls, to allow for further migration in the future. Co-Author: Andy Armstrong <andya@edx.org> Co-Author: Christina Roberts <christina@edx.org> Co-Author: David Baumgold <db@edx.org> Co-Author: Diana Huang <dkh@edx.org> Co-Author: Don Mitchell <dmitchell@edx.org> Co-Author: Julia Hansbrough <julia@edx.org> Co-Author: Nimisha Asthagiri <nasthagiri@edx.org> Co-Author: Sarina Canelake <sarina@edx.org> [LMS-2370]
39 lines
1.1 KiB
Python
39 lines
1.1 KiB
Python
"""
|
|
Base class for pages specific to a course in Studio.
|
|
"""
|
|
|
|
from bok_choy.page_object import PageObject
|
|
from . import BASE_URL
|
|
|
|
|
|
class CoursePage(PageObject):
|
|
"""
|
|
Abstract base class for page objects specific to a course in Studio.
|
|
"""
|
|
|
|
# Overridden by subclasses to provide the relative path within the course
|
|
# Does not need to include the leading forward or trailing slash
|
|
url_path = ""
|
|
|
|
def __init__(self, browser, course_org, course_num, course_run):
|
|
"""
|
|
Initialize the page object for the course located at
|
|
`{course_org}.{course_num}.{course_run}`
|
|
|
|
These identifiers will likely change in the future.
|
|
"""
|
|
super(CoursePage, self).__init__(browser)
|
|
self.course_info = {
|
|
'course_org': course_org,
|
|
'course_num': course_num,
|
|
'course_run': course_run
|
|
}
|
|
|
|
@property
|
|
def url(self):
|
|
"""
|
|
Construct a URL to the page within the course.
|
|
"""
|
|
course_key = "slashes:{course_org}+{course_num}+{course_run}".format(**self.course_info)
|
|
return "/".join([BASE_URL, self.url_path, course_key])
|