GUI acceptance tests using environment deployed from packages.

Build: #768 failed

Job: Onezone basic failed

user sees that home space of provider should have cloud with home icon[1oz 1op deployed]: Test case result

The below summarizes the result of the test " user sees that home space of provider should have cloud with home icon[1oz 1op deployed]" in build 768 of Onedata Products - gui acceptance pkg - Chrome onezone basic tests.
Description
user sees that home space of provider should have cloud with home icon[1oz 1op deployed]
Test class
gui.scenarios.test_onezone_basic
Method
test_user_sees_that_home_space_of_provider_should_have_cloud_with_home_icon[1oz_1op_deployed]
Duration
56 secs
Status
Failed (Existing Failure)

Error Log

RuntimeError: no  with "Toggle home provider" text found in ProviderPopover in modals
request = <FixtureRequest for <Function 'test_user_sees_that_home_space_of_provider_should_have_cloud_with_home_icon[1oz_1op_deployed]'>>

    @pytest.mark.usefixtures(*function_args)
    def scenario_wrapper(request):
>       _execute_scenario(feature, scenario, request, encoding)

/usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:227: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:189: in _execute_scenario
    _execute_step_function(request, scenario, step, step_func)
/usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:130: in _execute_step_function
    step_func(**kwargs)
<decorator-gen-298>:2: in click_on_visit_provider_in_provider_popover
    ???
tests/utils/utils.py:80: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/onezone/providers.py:405: in click_on_visit_provider_in_provider_popover
    getattr(modals(driver).provider_popover, transform(option)).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="db3ed4138f60ba90c2ab7eab301d5653", element="5fcd83a6-bdae-4454-acfd-599cb4da8933")>
css_sel = '.btn-container .btn-toggle-default', text = 'Toggle home provider'
err_msg = 'no  with "Toggle home provider" text found in ProviderPopover in modals'

    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  with "Toggle home provider" text found in ProviderPopover in modals

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