84 lines
2.5 KiB
Python
84 lines
2.5 KiB
Python
"""
|
|
Container page in Studio
|
|
"""
|
|
|
|
from bok_choy.page_object import PageObject
|
|
from bok_choy.promise import Promise
|
|
from . import BASE_URL
|
|
|
|
|
|
class ContainerPage(PageObject):
|
|
"""
|
|
Container page in Studio
|
|
"""
|
|
|
|
def __init__(self, browser, unit_locator):
|
|
super(ContainerPage, self).__init__(browser)
|
|
self.unit_locator = unit_locator
|
|
|
|
@property
|
|
def url(self):
|
|
"""URL to the container page for an xblock."""
|
|
return "{}/container/{}".format(BASE_URL, self.unit_locator)
|
|
|
|
def is_browser_on_page(self):
|
|
|
|
def _is_finished_loading():
|
|
# Wait until all components have been loaded
|
|
is_done = len(self.q(css=XBlockWrapper.BODY_SELECTOR).results) == len(
|
|
self.q(css='{} .xblock'.format(XBlockWrapper.BODY_SELECTOR)).results)
|
|
return (is_done, is_done)
|
|
|
|
# First make sure that an element with the view-container class is present on the page,
|
|
# and then wait to make sure that the xblocks are all there.
|
|
return (
|
|
self.q(css='body.view-container').present and
|
|
Promise(_is_finished_loading, 'Finished rendering the xblock wrappers.').fulfill()
|
|
)
|
|
|
|
@property
|
|
def xblocks(self):
|
|
"""
|
|
Return a list of xblocks loaded on the container page.
|
|
"""
|
|
return self.q(css=XBlockWrapper.BODY_SELECTOR).map(
|
|
lambda el: XBlockWrapper(self.browser, el.get_attribute('data-locator'))).results
|
|
|
|
|
|
class XBlockWrapper(PageObject):
|
|
"""
|
|
A PageObject representing a wrapper around an XBlock child shown on the Studio container page.
|
|
"""
|
|
url = None
|
|
BODY_SELECTOR = '.wrapper-xblock'
|
|
NAME_SELECTOR = '.header-details'
|
|
|
|
def __init__(self, browser, locator):
|
|
super(XBlockWrapper, self).__init__(browser)
|
|
self.locator = locator
|
|
|
|
def is_browser_on_page(self):
|
|
return self.q(css='{}[data-locator="{}"]'.format(self.BODY_SELECTOR, self.locator)).present
|
|
|
|
def _bounded_selector(self, selector):
|
|
"""
|
|
Return `selector`, but limited to this particular `CourseOutlineChild` context
|
|
"""
|
|
return '{}[data-locator="{}"] {}'.format(
|
|
self.BODY_SELECTOR,
|
|
self.locator,
|
|
selector
|
|
)
|
|
|
|
@property
|
|
def name(self):
|
|
titles = self.q(css=self._bounded_selector(self.NAME_SELECTOR)).text
|
|
if titles:
|
|
return titles[0]
|
|
else:
|
|
return None
|
|
|
|
@property
|
|
def preview_selector(self):
|
|
return self._bounded_selector('.xblock-student_view')
|