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.
14 lines
264 B
Python
14 lines
264 B
Python
from bok_choy.page_object import PageObject
|
|
from . import BASE_URL
|
|
|
|
|
|
class SignupPage(PageObject):
|
|
"""
|
|
Signup page for Studio.
|
|
"""
|
|
|
|
url = BASE_URL + "/signup"
|
|
|
|
def is_browser_on_page(self):
|
|
return self.q(css='body.view-signup').present
|