Build: #22 failed

Job: Multiprovider basic failed

user leaves space in one provider and sees that it was leaved from also in other provider: Test case result

The below summarizes the result of the test " user leaves space in one provider and sees that it was leaved from also in other provider" in build 22 of Onedata Products - gui acceptance pkg - feature-VFS-4716-introduction-to-acceptance-testing - Chrome multiprovider basic tests.
Description
user leaves space in one provider and sees that it was leaved from also in other provider
Test class
gui.scenarios.test_multiprovider_basic
Method
test_user_leaves_space_in_one_provider_and_sees_that_it_was_leaved_from_also_in_other_provider
Duration
1 min
Status
Failed (Existing Failure)

Error Log

TimeoutException: Message: waiting for spaces main menu tab page to load
request = <FixtureRequest for <Function 'test_user_leaves_space_in_one_provider_and_sees_that_it_was_leaved_from_also_in_other_provider'>>

    from tests.gui.steps.oneprovider.groups import *
>   from tests.gui.steps.oneprovider.spaces import *

tests/gui/scenarios/test_multiprovider_basic.py:49: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/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-602>: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="5a7db43eb5859acd59b206591a25c682")>
method = <function <lambda> at 0x7fd3139d0050>
message = 'waiting for spaces 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 spaces main menu tab page to load

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