Build: #21 failed

Job: Onezone spaces basic failed

user creates new space with get started button and pressing enter: Test case result

The below summarizes the result of the test " user creates new space with get started button and pressing enter" in build 21 of Onedata Products - gui acceptance pkg - feature-VFS-4716-introduction-to-acceptance-testing - Chrome onezone spaces basic tests.
Description
user creates new space with get started button and pressing enter
Test class
gui.scenarios.test_onezone_spaces_basic
Method
test_user_creates_new_space_with_get_started_button_and_pressing_enter
Duration
27 secs
Status
Failed (Existing Failure)

Error Log

RuntimeError: no CREATE A SPACE with "Create a space" text found in WelcomePage in SpacesPage in Onezone page
request = <FixtureRequest for <Function 'test_user_creates_new_space_with_get_started_button_and_pressing_enter'>>

>   ???

tests/gui/scenarios/test_onezone_spaces_basic.py:53: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python2.7/dist-packages/pytest_bdd/scenario.py:195: in _execute_scenario
    _execute_step_function(request, scenario, step, step_func)
/usr/local/lib/python2.7/dist-packages/pytest_bdd/scenario.py:137: in _execute_step_function
    step_func(**kwargs)
<decorator-gen-356>:2: in click_option_on_welcome_page
    ???
tests/gui/utils/generic.py:110: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/onezone/spaces.py:223: in click_option_on_welcome_page
    getattr(oz_page(driver)['spaces'].welcome_page, transform(option)).click()
tests/gui/utils/core/web_elements.py:58: in __get__
    elem = super(WebItem, self).__get__(instance, owner)
tests/gui/utils/core/web_elements.py:52: in __get__
    lambda: self._format_msg(err_msg, instance,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

web_elem_root = <selenium.webdriver.remote.webelement.WebElement (session="fbea13d6a4f3dd3231c74a62f2177919", element="0.8481781614652857-12")>
css_sel = '.info .ember-view', text = 'Create a space'
err_msg = 'no CREATE A SPACE with "Create a space" text found in WelcomePage in SpacesPage in Onezone page'

    def find_web_elem_with_text(web_elem_root, css_sel, text, err_msg):
        items = web_elem_root.find_elements_by_css_selector(css_sel)
        _scroll_to_css_sel(web_elem_root, css_sel)
        for item in items:
            if item.text.lower() == text.lower():
                return item
        else:
            with suppress(TypeError):
                err_msg = err_msg()
>           raise RuntimeError(err_msg)
E           RuntimeError: no CREATE A SPACE with "Create a space" text found in WelcomePage in SpacesPage in Onezone page

tests/gui/utils/generic.py:143: RuntimeError