GUI acceptance tests using environment deployed from packages.

Build: #406 was successful

Job: Storage sync was successful

user supports space with storage sync and enabled options mount in root[1oz 1op deployed]: Test case result

The below summarizes the result of the test " user supports space with storage sync and enabled options mount in root[1oz 1op deployed]" in build 406 of Onedata Products - gui acceptance pkg - Chrome storage sync tests.
Description
user supports space with storage sync and enabled options mount in root[1oz 1op deployed]
Test class
gui.scenarios.test_storage_sync
Method
test_user_supports_space_with_storage_sync_and_enabled_options_mount_in_root[1oz_1op_deployed]
Duration
4 mins
Status
Failed (Existing Failure)

Error Log

AssertionError: no info notify with ".*[Aa]dded.*support.*space.*" msg found
request = <FixtureRequest for <Function 'test_user_supports_space_with_storage_sync_and_enabled_options_mount_in_root[1oz_1op_deployed]'>>

    from tests.gui.steps.onezone.manage_account import *
>   from tests.gui.steps.onezone.login_page import *

tests/gui/scenarios/test_storage_sync.py:41: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/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)
<decorator-gen-20>:2: in notify_visible_with_text
    ???
tests/utils/utils.py:71: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

selenium = {'browser1': <selenium.webdriver.chrome.webdriver.WebDriver (session="b9281c0314e57f8c930958bea1b66c01")>, 'browser2': <selenium.webdriver.chrome.webdriver.WebDriver (session="503db76cccd9306f9c68bfadd4973129")>}
browser_id = 'browser1', 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