Build: #12 failed

Job: Onepanel basic failed

cluster deployment: Test case result

The below summarizes the result of the test " cluster deployment" in build 12 of Onedata Products - gui acceptance pkg - feature-VFS-4544-gui-acceptance-tests-for-new-oz - Chrome onepanel basic tests.
Description
cluster deployment
Test class
gui.scenarios.test_onepanel_basic
Method
test_cluster_deployment
Duration
26 secs
Status
Failed (Existing Failure)

Error Log

RuntimeError: no  item found in Onepanel Login page
request = <FixtureRequest for <Function 'test_cluster_deployment'>>

>   ???

tests/gui/scenarios/test_onepanel_basic.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)
/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)
<decorator-gen-42>:2: in g_login_to_panel_using_basic_auth
    ???
tests/gui/utils/generic.py:108: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/onepanel/login.py:31: in g_login_to_panel_using_basic_auth
    users[username].password)
tests/gui/steps/onepanel/login.py:18: in _login_to_panel
    panel_login_page.username = username
<decorator-gen-2>:2: in __set__
    ???
tests/gui/utils/generic.py:108: in wrapper
    return fun(*args, **kwargs)
tests/gui/utils/core/web_elements.py:84: in __set__
    input_box = super(Input, self).__get__(instance, type(instance))
tests/gui/utils/core/web_elements.py:28: in __get__
    lambda: self._format_msg('no {item} item found '
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

web_elem_root = <selenium.webdriver.chrome.webdriver.WebDriver (session="1999786ed6232a5516a2d325ca1e3cff")>
css_sel = 'input[placeholder="Username"]'
err_msg = 'no  item found in Onepanel Login 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  item found in Onepanel Login page

tests/gui/utils/generic.py:127: RuntimeError