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.
18 lines
343 B
Python
18 lines
343 B
Python
"""
|
|
Home page for Studio when not logged in.
|
|
"""
|
|
|
|
from bok_choy.page_object import PageObject
|
|
from . import BASE_URL
|
|
|
|
|
|
class HowitworksPage(PageObject):
|
|
"""
|
|
Home page for Studio when not logged in.
|
|
"""
|
|
|
|
url = BASE_URL + "/howitworks"
|
|
|
|
def is_browser_on_page(self):
|
|
return self.q(css='body.view-howitworks').present
|