190 lines
6.2 KiB
Python
190 lines
6.2 KiB
Python
"""
|
|
Container page in Studio
|
|
"""
|
|
|
|
from bok_choy.page_object import PageObject
|
|
from bok_choy.promise import Promise, EmptyPromise
|
|
from . import BASE_URL
|
|
|
|
from selenium.webdriver.common.action_chains import ActionChains
|
|
|
|
from utils import click_css, wait_for_notification
|
|
|
|
|
|
class ContainerPage(PageObject):
|
|
"""
|
|
Container page in Studio
|
|
"""
|
|
NAME_SELECTOR = 'a.navigation-current'
|
|
|
|
def __init__(self, browser, locator):
|
|
super(ContainerPage, self).__init__(browser)
|
|
self.locator = locator
|
|
|
|
@property
|
|
def url(self):
|
|
"""URL to the container page for an xblock."""
|
|
return "{}/container/{}".format(BASE_URL, self.locator)
|
|
|
|
@property
|
|
def name(self):
|
|
titles = self.q(css=self.NAME_SELECTOR).text
|
|
if titles:
|
|
return titles[0]
|
|
else:
|
|
return None
|
|
|
|
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._get_xblocks()
|
|
|
|
@property
|
|
def inactive_xblocks(self):
|
|
"""
|
|
Return a list of inactive xblocks loaded on the container page.
|
|
"""
|
|
return self._get_xblocks(".is-inactive ")
|
|
|
|
@property
|
|
def active_xblocks(self):
|
|
"""
|
|
Return a list of active xblocks loaded on the container page.
|
|
"""
|
|
return self._get_xblocks(".is-active ")
|
|
|
|
def _get_xblocks(self, prefix=""):
|
|
return self.q(css=prefix + XBlockWrapper.BODY_SELECTOR).map(
|
|
lambda el: XBlockWrapper(self.browser, el.get_attribute('data-locator'))).results
|
|
|
|
def drag(self, source_index, target_index):
|
|
"""
|
|
Gets the drag handle with index source_index (relative to the vertical layout of the page)
|
|
and drags it to the location of the drag handle with target_index.
|
|
|
|
This should drag the element with the source_index drag handle BEFORE the
|
|
one with the target_index drag handle.
|
|
"""
|
|
draggables = self.q(css='.drag-handle')
|
|
source = draggables[source_index]
|
|
target = draggables[target_index]
|
|
action = ActionChains(self.browser)
|
|
# When dragging before the target element, must take into account that the placeholder
|
|
# will appear in the place where the target used to be.
|
|
placeholder_height = 40
|
|
action.click_and_hold(source).move_to_element_with_offset(
|
|
target, 0, placeholder_height
|
|
).release().perform()
|
|
wait_for_notification(self)
|
|
|
|
def duplicate(self, source_index):
|
|
"""
|
|
Duplicate the item with index source_index (based on vertical placement in page).
|
|
"""
|
|
click_css(self, 'a.duplicate-button', source_index)
|
|
|
|
def delete(self, source_index):
|
|
"""
|
|
Delete the item with index source_index (based on vertical placement in page).
|
|
"""
|
|
click_css(self, 'a.delete-button', source_index, require_notification=False)
|
|
# Click the confirmation dialog button
|
|
click_css(self, 'a.button.action-primary', 0)
|
|
|
|
def edit(self):
|
|
"""
|
|
Clicks the "edit" button for the first component on the page.
|
|
|
|
Same as the implementation in unit.py, unit and component pages will be merging.
|
|
"""
|
|
self.q(css='.edit-button').first.click()
|
|
EmptyPromise(
|
|
lambda: self.q(css='.xblock-studio_view').present,
|
|
'Wait for the Studio editor to be present'
|
|
).fulfill()
|
|
|
|
return self
|
|
|
|
def add_missing_groups(self):
|
|
"""
|
|
Click the "add missing groups" link.
|
|
"""
|
|
click_css(self, '.add-missing-groups-button')
|
|
|
|
def missing_groups_button_present(self):
|
|
"""
|
|
Returns True if the "add missing groups" button is present.
|
|
"""
|
|
return self.q(css='.add-missing-groups-button').present
|
|
|
|
|
|
class XBlockWrapper(PageObject):
|
|
"""
|
|
A PageObject representing a wrapper around an XBlock child shown on the Studio container page.
|
|
"""
|
|
url = None
|
|
BODY_SELECTOR = '.studio-xblock-wrapper'
|
|
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 children(self):
|
|
"""
|
|
Will return any first-generation descendant xblocks of this xblock.
|
|
"""
|
|
descendants = self.q(css=self._bounded_selector(self.BODY_SELECTOR)).map(
|
|
lambda el: XBlockWrapper(self.browser, el.get_attribute('data-locator'))).results
|
|
|
|
# Now remove any non-direct descendants.
|
|
grandkids = []
|
|
for descendant in descendants:
|
|
grandkids.extend(descendant.children)
|
|
|
|
grand_locators = [grandkid.locator for grandkid in grandkids]
|
|
return [descendant for descendant in descendants if not descendant.locator in grand_locators]
|
|
|
|
@property
|
|
def preview_selector(self):
|
|
return self._bounded_selector('.xblock-student_view,.xblock-author_view')
|