Build: #24 failed

Job: Onezone spaces basic failed

user generates different expose exisitng data tokens space has no support: Test case result

The below summarizes the result of the test " user generates different expose exisitng data tokens space has no support" in build 24 of Onedata Products - gui acceptance pkg - feature-VFS-4716-introduction-to-acceptance-testing - Chrome onezone spaces basic tests.
Description
user generates different expose exisitng data tokens space has no support
Test class
gui.scenarios.test_onezone_spaces_basic
Method
test_user_generates_different_expose_exisitng_data_tokens_space_has_no_support
Duration
30 secs
Status
Failed (New Failure)

Error Log

RuntimeError: no GET SUPPORT with "Get support" text found in SpaceProvidersPage in SpacesPage in Onezone page
request = <FixtureRequest for <Function 'test_user_generates_different_expose_exisitng_data_tokens_space_has_no_support'>>

    from tests.gui.steps.oneprovider.file_browser import *
>   from tests.gui.steps.oneprovider.metadata import *

tests/gui/scenarios/test_onezone_spaces_basic.py:45: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/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-368>:2: in click_get_support_button_on_providers_page
    ???
tests/gui/utils/generic.py:110: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/onezone/spaces.py:281: in click_get_support_button_on_providers_page
    oz_page(driver)['spaces'].providers_page.get_support()
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="83e04c7097fa0dfe3f20a6219f56c414", element="0.10737577529426567-21")>
css_sel = 'button', text = 'Get support'
err_msg = 'no GET SUPPORT with "Get support" text found in SpaceProvidersPage in SpacesPage in Onezone page'

    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 GET SUPPORT with "Get support" text found in SpaceProvidersPage in SpacesPage in Onezone page

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