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

Build: #683 failed

Job: Onepanel was successful

revoke space support[1oz 1op 1oc-web GUi-RESt-RESt]: Test case result

The below summarizes the result of the test " revoke space support[1oz 1op 1oc-web GUi-RESt-RESt]" in build 683 of Onedata Products - mixed acceptance pkg - Chrome onepanel tests.
Description
revoke space support[1oz 1op 1oc-web GUi-RESt-RESt]
Test class
mixed.scenarios.test_onepanel_basic
Method
test_revoke_space_support[1oz_1op_1oc-web GUI-REST-REST]
Jira Issue
Duration
2 mins
Status
Failed (Existing Failure)

Error Log

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

>   ???

tests/mixed/scenarios/test_onepanel_basic.py:45: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/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:336: in support_space_in_op_panel
    tmp_memory, space_name, host, hosts)
tests/gui/meta_steps/onepanel/spaces.py:72: in support_space_in_op_panel_using_gui
    notify_text_regexp)
</usr/local/lib/python2.7/dist-packages/decorator.pyc:decorator-gen-18>:2: in notify_visible_with_text
    ???
tests/utils/utils.py:80: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

selenium = {'browsers': <selenium.webdriver.chrome.webdriver.WebDriver (session="8229d023b7fd7a8d6aa2f0901bbe4319")>, 'onepanel':...f0901bbe4319")>, 'user1': <selenium.webdriver.chrome.webdriver.WebDriver (session="9eb611a334020c970ee61097ebdd8b02")>}
browser_id = 'onepanel', notify_type = 'info'
text_regexp = '.*[Aa]dded.*support.*space.*'

    @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 info notify with ".*[Aa]dded.*support.*space.*" msg found

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