Build: #29 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 29 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

TimeoutException: Message: waiting for groups main menu tab page to load
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-512>:2: in wt_click_on_the_given_main_menu_tab
    ???
tests/gui/utils/generic.py:110: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/oneprovider_common.py:68: in wt_click_on_the_given_main_menu_tab
    _click_on_tab_in_main_menu_sidebar(driver, main_menu_tab)
tests/gui/steps/oneprovider_common.py:46: in _click_on_tab_in_main_menu_sidebar
    ''.format(tab)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <selenium.webdriver.support.wait.WebDriverWait (session="bde78155034c3846a64294ec4ec94f29")>
method = <function <lambda> at 0x7fe6bf6c1050>
message = 'waiting for groups main menu tab page to load'

    def until(self, method, message=''):
        """Calls the method provided with the driver as an argument until the \
            return value is not False."""
        screen = None
        stacktrace = None
    
        end_time = time.time() + self._timeout
        while True:
            try:
                value = method(self._driver)
                if value:
                    return value
            except self._ignored_exceptions as exc:
                screen = getattr(exc, 'screen', None)
                stacktrace = getattr(exc, 'stacktrace', None)
            time.sleep(self._poll)
            if time.time() > end_time:
                break
>       raise TimeoutException(message, screen, stacktrace)
E       TimeoutException: Message: waiting for groups main menu tab page to load

/usr/local/lib/python2.7/dist-packages/selenium/webdriver/support/wait.py:80: TimeoutException