Change expectedFailure decorators to skip, because that still takes a screenshot as if it were an error and at least one of those take a super long time when running locally on devstack.
17 lines
274 B
Python
17 lines
274 B
Python
"""
|
|
Course Team page in Studio.
|
|
"""
|
|
|
|
from .course_page import CoursePage
|
|
|
|
|
|
class CourseTeamPage(CoursePage):
|
|
"""
|
|
Course Team page in Studio.
|
|
"""
|
|
|
|
url_path = "course_team"
|
|
|
|
def is_browser_on_page(self):
|
|
return self.q(css='body.view-team').present
|