GUI acceptance tests using environment deployed from packages.

Build: #647 failed

Job: Onezone basic failed

user fails to create unnamed group using enter to confirm group name[1oz 1op deployed]: Test case result

The below summarizes the result of the test " user fails to create unnamed group using enter to confirm group name[1oz 1op deployed]" in build 647 of Onedata Products - gui acceptance pkg - Chrome onezone basic tests.
Description
user fails to create unnamed group using enter to confirm group name[1oz 1op deployed]
Test class
gui.scenarios.test_onezone_basic
Method
test_user_fails_to_create_unnamed_group_using_enter_to_confirm_group_name[1oz_1op_deployed]
Duration
30 secs
Status
Failed (Existing Failure)

Error Log

RuntimeError: no  item found in modals
request = <FixtureRequest for <Function 'test_user_fails_to_create_unnamed_group_using_enter_to_confirm_group_name[1oz_1op_deployed]'>>

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

tests/gui/scenarios/test_onezone_basic.py:49: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/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)
</usr/local/lib/python2.7/dist-packages/decorator.pyc:decorator-gen-328>:2: in assert_error_modal_with_text_appeared
    ???
tests/utils/utils.py:79: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/onezone/groups.py:137: in assert_error_modal_with_text_appeared
    assert text in modals(selenium[browser_id]).error.content, message
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="cdaadda05a23dedff43206d8cc6472ee")>
css_sel = '.alert-global.modal.in .modal-dialog'
err_msg = 'no  item found in modals'

    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  item found in modals

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