GUI acceptance tests using environment deployed from packages.

Build: #618 failed

Job: Chrome oneprovider ACL subdirectories multi failed

remove nonempty directory[1oz 1op deployed-user-user2-fails-all except [delete subdirectory]]: Test case result

The below summarizes the result of the test " remove nonempty directory[1oz 1op deployed-user-user2-fails-all except [delete subdirectory]]" in build 618 of Onedata Products - gui acceptance pkg - Chrome oneprovider ACL subdirectories multi.
Description
remove nonempty directory[1oz 1op deployed-user-user2-fails-all except [delete subdirectory]]
Test class
gui.scenarios.test_oneprovider_acl_subdir_multi
Method
test_remove_nonempty_directory[1oz_1op_deployed-user-user2-fails-all except [delete subdirectory]]
Duration
2 mins
Status
Failed (Existing Failure)

Error Log

AssertionError: no error notify with ".*not.*removed.*" msg found
privileges = 'all except [delete subdirectory]', subject_type = 'user'
result = 'fails', subject_name = 'user2'
request = <FixtureRequest for <Function 'test_remove_nonempty_directory[1oz_1op_deployed-user-user2-fails-all except [delete subdirectory]]'>>

>   ???

tests/gui/scenarios/test_oneprovider_acl_subdir_multi.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)
tests/gui/meta_steps/oneprovider/data.py:70: in remove_item_in_op_gui
    '.*not.*removed.*')
</usr/local/lib/python2.7/dist-packages/decorator.pyc:decorator-gen-18>:2: in notify_visible_with_text
    ???
tests/utils/utils.py:79: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

selenium = {'browser1': <selenium.webdriver.chrome.webdriver.WebDriver (session="cd3b09d6b7e3f4eee42fec68dab7487d")>, 'browser2':...ec68dab7487d")>, 'user2': <selenium.webdriver.chrome.webdriver.WebDriver (session="aacc3f5f1dea52e7fbed823817990c10")>}
browser_id = 'browser2', notify_type = 'error', text_regexp = '.*not.*removed.*'

    @wt(parsers.parse('user of {browser_id} sees an {notify_type} notify '
                      'with text matching to: {text_regexp}'))
    @repeat_failed(timeout=2 * WAIT_BACKEND)
    def notify_visible_with_text(selenium, browser_id, notify_type, text_regexp):
        driver = selenium[browser_id]
        css_sel = '.ember-notify-show[class*={}] .message'.format(notify_type)
        regexp = re.compile(text_regexp)
        with suppress(NoSuchElementException, StaleElementReferenceException):
            assert any(regexp.match(notify.text) for notify
                       in driver.find_elements_by_css_selector(css_sel)), \
                'no {} notify with "{}" msg found'.format(notify_type,
>                                                         text_regexp)
E           AssertionError: no error notify with ".*not.*removed.*" msg found

tests/gui/steps/common/notifies.py:34: AssertionError