Build: #30 failed

Job: Chrome oneprovider groups tests failed

user fails to join to group because of using invalid token presses enter after entering token: Test case result

The below summarizes the result of the test " user fails to join to group because of using invalid token presses enter after entering token" in build 30 of Onedata Products - gui acceptance pkg - feature-VFS-4716-introduction-to-acceptance-testing - Chrome oneprovider groups tests.
Description
user fails to join to group because of using invalid token presses enter after entering token
Test class
gui.scenarios.test_oneprovider_groups
Method
test_user_fails_to_join_to_group_because_of_using_invalid_token_presses_enter_after_entering_token
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_fails_to_join_to_group_because_of_using_invalid_token_presses_enter_after_entering_token'>>

>   ???

tests/gui/scenarios/test_oneprovider_groups.py:61: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/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)
/usr/local/lib/python2.7/dist-packages/pytest_bdd/steps.py:165: in step_func
    result = get_fixture_value(request, func.__name__)
/usr/local/lib/python2.7/dist-packages/pytest_bdd/utils.py:36: in get_fixture_value
    return getfixturevalue(name)
/usr/local/lib/python2.7/dist-packages/_pytest/fixtures.py:430: in getfixturevalue
    return self._get_active_fixturedef(argname).cached_result[0]
/usr/local/lib/python2.7/dist-packages/_pytest/fixtures.py:455: in _get_active_fixturedef
    self._compute_fixture_value(fixturedef)
/usr/local/lib/python2.7/dist-packages/_pytest/fixtures.py:526: in _compute_fixture_value
    fixturedef.execute(request=subrequest)
/usr/local/lib/python2.7/dist-packages/_pytest/fixtures.py:797: in execute
    return hook.pytest_fixture_setup(fixturedef=self, request=request)
/usr/local/lib/python2.7/dist-packages/pluggy/__init__.py:617: in __call__
    return self._hookexec(self, self._nonwrappers + self._wrappers, kwargs)
/usr/local/lib/python2.7/dist-packages/pluggy/__init__.py:222: in _hookexec
    return self._inner_hookexec(hook, methods, kwargs)
/usr/local/lib/python2.7/dist-packages/pluggy/__init__.py:216: in <lambda>
    firstresult=hook.spec_opts.get('firstresult'),
/usr/local/lib/python2.7/dist-packages/_pytest/fixtures.py:828: in pytest_fixture_setup
    result = call_fixture_func(fixturefunc, request, kwargs)
/usr/local/lib/python2.7/dist-packages/_pytest/fixtures.py:720: in call_fixture_func
    res = fixturefunc(**kwargs)
tests/gui/steps/oneprovider_common.py:56: in g_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="61db09b822bc40fdb5fbfb979a55cfc0")>
method = <function <lambda> at 0x7f1231574f50>
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