Build: #37 failed

Job: Onezone spaces multiuser failed

user has access to space via group membership: Test case result

The below summarizes the result of the test " user has access to space via group membership" in build 37 of Onedata Products - gui acceptance pkg - feature-VFS-4716-introduction-to-acceptance-testing - Chrome onezone spaces multiuser tests.
Description
user has access to space via group membership
Test class
gui.scenarios.test_onezone_spaces_multiuser
Method
test_user_has_access_to_space_via_group_membership
Duration
1 min
Status
Failed (Existing Failure)

Error Log

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

    from tests.gui.steps.oneprovider.common import *
>   from tests.gui.steps.oneprovider.data_tab import *

tests/gui/scenarios/test_onezone_spaces_multiuser.py:41: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/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-482>:2: in is_present_on_groups_list
    ???
tests/gui/utils/generic.py:110: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/oneprovider/groups.py:38: in is_present_on_groups_list
    if not _is_group_present_in_sidebar(driver, op_page, name):
tests/gui/steps/oneprovider/groups.py:19: in _is_group_present_in_sidebar
    in op_page(driver).groups.sidebar.groups}
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="7cea4d4fad3443af73971a7e04e55b74")>
css_sel = '.secondary-sidebar'
err_msg = 'no SIDEBAR item found in GroupContentPage 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 GroupContentPage in Oneprovider page

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