Build: #18 failed

Job: Chrome oneprovider spaces failed

switching between spaces: Test case result

The below summarizes the result of the test " switching between spaces" in build 18 of Onedata Products - gui acceptance pkg - feature-VFS-4716-introduction-to-acceptance-testing - Chrome oneprovider spaces.
Description
switching between spaces
Test class
gui.scenarios.test_oneprovider_spaces
Method
test_switching_between_spaces
Duration
57 secs
Status
Failed (New Failure)

Error Log

RuntimeError: no SIDEBAR item found in SpacesContentPage in Oneprovider page
request = <FixtureRequest for <Function 'test_switching_between_spaces'>>

    
>   scenarios('../features/oneprovider/spaces/creation.feature')

tests/gui/scenarios/test_oneprovider_spaces.py:57: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/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)
tests/gui/steps/oneprovider/spaces.py:28: in select_sapce_from_sidebar_list
    op_page(selenium[browser_id]).spaces.sidebar.spaces[space_name].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:29: in __get__
    lambda: self._format_msg('no {item} item found '
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

web_elem_root = <selenium.webdriver.chrome.webdriver.WebDriver (session="19d027a0e707a105b7edc82b32769554")>
css_sel = '.secondary-sidebar'
err_msg = 'no SIDEBAR item found in SpacesContentPage in Oneprovider page'

    def find_web_elem(web_elem_root, css_sel, err_msg):
        try:
            _scroll_to_css_sel(web_elem_root, css_sel)
            item = web_elem_root.find_element_by_css_selector(css_sel)
        except NoSuchElementException:
            with suppress(TypeError):
                err_msg = err_msg()
>           raise RuntimeError(err_msg)
E           RuntimeError: no SIDEBAR item found in SpacesContentPage in Oneprovider page

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