Build: #1 failed

Job: Onepanel basic failed

cluster deployment: Test case result

The below summarizes the result of the test " cluster deployment" in build 1 of Onedata Products - gui acceptance pkg - feature-VFS-4500-luma-acceptance-one-env-tests-develop - Chrome onepanel basic tests.
Description
cluster deployment
Test class
gui.scenarios.test_onepanel_basic
Method
test_cluster_deployment
Duration
1 min
Status
Failed (New Failure)

Error Log

RuntimeError: no CREATE NEW CLUSTER with "Create new cluster" text found in WelcomePage in content in Zone Panel
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)
<decorator-gen-72>:2: in wt_click_on_btn_in_content
    ???
tests/gui/utils/generic.py:110: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/onepanel/common.py:30: in wt_click_on_btn_in_content
    getattr(content, transform(btn)).click()
tests/gui/utils/core/web_elements.py:58: in __get__
    elem = super(WebItem, self).__get__(instance, owner)
tests/gui/utils/core/web_elements.py:52: in __get__
    lambda: self._format_msg(err_msg, instance,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

web_elem_root = <selenium.webdriver.remote.webelement.WebElement (session="ad2d59fe54c2a1e48e89b459332a8e6d", element="0.3996917356264309-5")>
css_sel = 'button', text = 'Create new cluster'
err_msg = 'no CREATE NEW CLUSTER with "Create new cluster" text found in WelcomePage in content in Zone Panel'

    def find_web_elem_with_text(web_elem_root, css_sel, text, err_msg):
        items = web_elem_root.find_elements_by_css_selector(css_sel)
        _scroll_to_css_sel(web_elem_root, css_sel)
        for item in items:
            if item.text.lower() == text.lower():
                return item
        else:
            with suppress(TypeError):
                err_msg = err_msg()
>           raise RuntimeError(err_msg)
E           RuntimeError: no CREATE NEW CLUSTER with "Create new cluster" text found in WelcomePage in content in Zone Panel

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