Build: #16 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 16 of Onedata Products - gui acceptance pkg - feature-VFS-4715-onezone-groups-gui-acceptance-tests - 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 "group management" on Onezone page found
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-246>:2: in click_create_or_join_group_button_in_panel
    ???
tests/gui/utils/generic.py:110: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/onezone/groups.py:28: in click_create_or_join_group_button_in_panel
    getattr(oz_page(selenium[browser_id])[panel], button_name)()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <tests.gui.utils.onezone.OZLoggedIn object at 0x7eff7d3fca90>
item = 'group management'

    def __getitem__(self, item):
        item = item.lower()
        # expand side panel
        ActionChains(self.web_elem).move_to_element(self._panels[0]).perform()
        # wait for side panel to expand so we can read panel name
        sleep(0.2)
        cls = self.panels.get(item, None)
        if cls:
            item = item.replace('_', ' ').lower()
            for panel in self._panels:
                if item == panel.text.lower():
                    # open page
                    panel.click()
                    # collapse side panel
                    ActionChains(self.web_elem).move_to_element(
                        self.web_elem.find_element_by_css_selector(
                            '.row-heading .col-title')).perform()
                    # wait for side panel to collapse
                    sleep(0.2)
                    return cls(self.web_elem, self.web_elem, parent=self)
        else:
>           raise RuntimeError('no "{}" on {} found'.format(item, str(self)))
E           RuntimeError: no "group management" on Onezone page found

tests/gui/utils/onezone/__init__.py:58: RuntimeError