Build: #23 failed

Job: Chrome oneprovider groups multiuser tests failed

user fails to view group to which he does not belong to using its id in url: Test case result

The below summarizes the result of the test " user fails to view group to which he does not belong to using its id in url" in build 23 of Onedata Products - gui acceptance pkg - feature-VFS-4716-introduction-to-acceptance-testing - Chrome oneprovider groups multiuser tests.
Description
user fails to view group to which he does not belong to using its id in url
Test class
gui.scenarios.test_oneprovider_groups_multiuser
Method
test_user_fails_to_view_group_to_which_he_does_not_belong_to_using_its_id_in_url
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_fails_to_view_group_to_which_he_does_not_belong_to_using_its_id_in_url'>>

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

tests/gui/scenarios/test_oneprovider_groups_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)
tests/gui/steps/oneprovider/groups.py:28: in select_group_from_sidebar_list
    op_page(selenium[browser_id]).groups.sidebar.groups[group_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="b7a7164d23de5ff632413d72a511bc53")>
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