Build: #17 failed

Job: Multiprovider basic failed

user changes name of group in one provider and sees that it was changed also in other provider: Test case result

The below summarizes the result of the test " user changes name of group in one provider and sees that it was changed also in other provider" in build 17 of Onedata Products - gui acceptance pkg - feature-VFS-4716-introduction-to-acceptance-testing - Chrome multiprovider basic tests.
Description
user changes name of group in one provider and sees that it was changed also in other provider
Test class
gui.scenarios.test_multiprovider_basic
Method
test_user_changes_name_of_group_in_one_provider_and_sees_that_it_was_changed_also_in_other_provider
Duration
35 secs
Status
Failed (New Failure)

Error Log

RuntimeError: no VISIT PROVIDER with "Visit provider" text found in ProviderPopover in ProvidersPage in Onezone page
request = <FixtureRequest for <Function 'test_user_changes_name_of_group_in_one_provider_and_sees_that_it_was_changed_also_in_other_provider'>>

    from tests.gui.steps.oneprovider_common import *
>   from tests.gui.meta_steps.onezone.common import *

tests/gui/scenarios/test_multiprovider_basic.py:53: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/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-534>: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/oneprovider/multiprovider.py:22: in click_create_new_space_on_spaces_on_left_sidebar_menu
    visit_op(selenium, browser_id, oz_page, hosts[provider_name]['name'])
tests/gui/meta_steps/onezone/common.py:42: in visit_op
    providers_panel.popover.visit_provider()
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="7b095e303ca1230dc6a782d9a4bef3a1", element="0.29433117850831825-29")>
css_sel = '.btn-container .btn-go-to-files', text = 'Visit provider'
err_msg = 'no VISIT PROVIDER with "Visit provider" text found in ProviderPopover in ProvidersPage 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 VISIT PROVIDER with "Visit provider" text found in ProviderPopover in ProvidersPage in Onezone page

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