Build: #24 failed

Job: Multiprovider basic failed

user creates space in one provider and sees that it was created also in other provider: Test case result

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

Error Log

RuntimeError: no CREATE SPACE BUTTON item found in SpacesPage in Onezone page
request = <FixtureRequest for <Function 'test_user_creates_space_in_one_provider_and_sees_that_it_was_created_also_in_other_provider'>>

    from tests.gui.steps.onezone.multibrowser_spaces import *
>   from tests.gui.steps.onezone.groups import *

tests/gui/scenarios/test_multiprovider_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-260>:2: in click_create_new_space_on_spaces_on_left_sidebar_menu
    ???
tests/gui/utils/generic.py:110: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/onezone/spaces.py:23: in click_create_new_space_on_spaces_on_left_sidebar_menu
    oz_page(driver)['spaces'].create_space_button()
tests/gui/utils/core/web_elements.py:58: in __get__
    elem = super(WebItem, self).__get__(instance, owner)
tests/gui/utils/core/web_elements.py:29: in __get__
    lambda: self._format_msg('no {item} item found '
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

web_elem_root = <selenium.webdriver.chrome.webdriver.WebDriver (session="849cb9691f6f07b14d4ed4fce9ad4511")>
css_sel = '.one-sidebar-toolbar-button .oneicon-add-filled'
err_msg = 'no CREATE SPACE BUTTON item found in SpacesPage in Onezone 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 CREATE SPACE BUTTON item found in SpacesPage in Onezone page

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