Acceptance tests using different clients concurrently. Environment deployed from packages.

Build: #346 failed

Job: Onepanel failed

user supports space with storage sync and enabled options write once[1oz 1op 1oc-RESt-web GUi-RESt]: Test case result

The below summarizes the result of the test " user supports space with storage sync and enabled options write once[1oz 1op 1oc-RESt-web GUi-RESt]" in build 346 of Onedata Products - mixed acceptance pkg - Chrome onepanel tests.
Description
user supports space with storage sync and enabled options write once[1oz 1op 1oc-RESt-web GUi-RESt]
Test class
mixed.scenarios.test_onepanel_basic
Method
test_user_supports_space_with_storage_sync_and_enabled_options_write_once[1oz_1op_1oc-REST-web GUI-REST]
Duration
1 min
Status
Failed (Existing Failure)

Error Log

AssertionError: no info notify with ".*[Aa]dded.*support.*space.*" msg found
client1 = 'REST', client2 = 'web GUI', client3 = 'REST'
request = <FixtureRequest for <Function 'test_user_supports_space_with_storage_sync_and_enabled_options_write_once[1oz_1op_1oc-REST-web GUI-REST]'>>

    from tests.gui.meta_steps.onepanel.account_management import *
>   from tests.gui.meta_steps.onepanel.provider import *

tests/mixed/scenarios/test_onepanel_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)
tests/mixed/steps/onepanel_basic.py:332: in support_space_in_op_panel
    tmp_memory, space_name, host, hosts)
tests/gui/meta_steps/onepanel/spaces.py:59: in support_space_in_op_panel_using_gui
    notify_text_regexp)
<decorator-gen-20>:2: in notify_visible_with_text
    ???
tests/utils/utils.py:71: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

selenium = {'admin': <selenium.webdriver.chrome.webdriver.WebDriver (session="3a9f563b4efb82486b8cef75ff0a9d17")>, 'browsers': <s...ef75ff0a9d17")>, 'user1': <selenium.webdriver.chrome.webdriver.WebDriver (session="c9a44a5ab8651c58906211fee67a6eef")>}
browser_id = 'admin', notify_type = 'info'
text_regexp = '.*[Aa]dded.*support.*space.*'

    @when(parsers.parse('user of {browser_id} sees an {notify_type} notify '
                        'with text matching to: {text_regexp}'))
    @then(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 info notify with ".*[Aa]dded.*support.*space.*" msg found

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