GUI acceptance tests using environment deployed from packages.

Build: #2909 failed

Job: Onepanel basic failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

    Final

user removes newly created storage[1oz 1op deployed-browser unified-new storage5]: Test case result

The below summarizes the result of the test " user removes newly created storage[1oz 1op deployed-browser unified-new storage5]" in build 2,909 of Onedata Products - gui acceptance pkg - Onepanel basic.
Description
user removes newly created storage[1oz 1op deployed-browser unified-new storage5]
Test class
gui.scenarios.test_onepanel_basic
Method
test_user_removes_newly_created_storage[1oz_1op_deployed-browser_unified-new_storage5]
Duration
1 min
Status
Failed (New Failure)

Error Log

AssertionError: no info notify with ".*[Ss]torage.*added.*" msg found
request = <FixtureRequest for <Function 'test_user_removes_newly_created_storage[1oz_1op_deployed-browser_unified-new_storage5]'>>

    @pytest.mark.usefixtures(*function_args)
    def scenario_wrapper(request):
>       _execute_scenario(feature, scenario, request, encoding)

/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:227: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:189: in _execute_scenario
    _execute_step_function(request, scenario, step, step_func)
/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:130: in _execute_step_function
    step_func(**kwargs)
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
tests/gui/meta_steps/onepanel/storages.py:76: in add_storage_in_op_panel_using_gui
    _add_storage_in_op_panel_using_gui(selenium, browser_id, config, onepanel,
tests/gui/meta_steps/onepanel/storages.py:127: in _add_storage_in_op_panel_using_gui
    notify_visible_with_text(selenium, browser_id, notify_type, text_regexp)
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-31>:2: in notify_visible_with_text
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

selenium = {'browser_emergency': <selenium.webdriver.chrome.webdriver.WebDriver (session="a23c15b0e1fddf534c34cd71f5e8b2e2")>, 'browser_unified': <selenium.webdriver.chrome.webdriver.WebDriver (session="c79c1aa1972585d0cd895ab9ad15987a")>}
browser_id = 'browser_unified', notify_type = 'info'
text_regexp = '.*[Ss]torage.*added.*'

    @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 ".*[Ss]torage.*added.*" msg found

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