Files
edx-platform/common/test/acceptance/pages/studio/index.py
Jesse Zoldak 74b65ddb1e Improve rerun test
for troubleshooting TNL-692
2014-10-24 16:12:11 -04:00

43 lines
1.2 KiB
Python

"""
My Courses page in Studio
"""
from bok_choy.page_object import PageObject
from . import BASE_URL
class DashboardPage(PageObject):
"""
My Courses page in Studio
"""
url = BASE_URL + "/course/"
def is_browser_on_page(self):
return self.q(css='body.view-dashboard').present
@property
def course_runs(self):
"""
The list of course run metadata for all displayed courses
Returns an empty string if there are none
"""
return self.q(css='.course-run>.value').text
@property
def has_processing_courses(self):
return self.q(css='.courses-processing').present
def create_rerun(self, display_name):
"""
Clicks the create rerun link of the course specified by display_name.
"""
name = self.q(css='.course-title').filter(lambda el: el.text == display_name)[0]
name.find_elements_by_xpath('../..')[0].find_elements_by_class_name('rerun-button')[0].click()
def click_course_run(self, run):
"""
Clicks on the course with run given by run.
"""
self.q(css='.course-run .value').filter(lambda el: el.text == run)[0].click()