GUI acceptance tests using environment deployed from packages.

Build: #25 failed

Job: Storage sync failed

user configures storage sync and sees storage synchronization statistics[1oz 1op deployed]: Test case result

The below summarizes the result of the test " user configures storage sync and sees storage synchronization statistics[1oz 1op deployed]" in build 25 of Onedata Products - gui acceptance pkg - release-22.02.0-alpha1 - Chrome storage sync tests.
Description
user configures storage sync and sees storage synchronization statistics[1oz 1op deployed]
Test class
gui.scenarios.test_storage_sync
Method
test_user_configures_storage_sync_and_sees_storage_synchronization_statistics[1oz_1op_deployed]
Duration
11 mins
Status
Failed (New Failure)

Error Log

AssertionError: displayed 501 as number of deleted files on sync chart instead of expected 802
request = <FixtureRequest for <Function 'test_user_configures_storage_sync_and_sees_storage_synchronization_statistics[1oz_1op_deployed]'>>

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

/usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:227: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:189: in _execute_scenario
    _execute_step_function(request, scenario, step, step_func)
/usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:130: in _execute_step_function
    step_func(**kwargs)
tests/utils/bdd_utils.py:77: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-197>:2: in assert_correct_number_displayed_on_sync_charts
    ???
tests/utils/utils.py:90: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

selenium = {'browser1': <selenium.webdriver.chrome.webdriver.WebDriver (session="cf2a2622f69d92b33fac789d66668d04")>, 'browser2': <selenium.webdriver.chrome.webdriver.WebDriver (session="9edba09bd7fa3a3875a3ab28e8f9c5e7")>}
browser_id = 'browser1', bar_type = 'deleted'
onepanel = <class 'tests.gui.utils.onepanel.Onepanel'>, num = 802

    @wt(parsers.re(r'user of (?P<browser_id>.*?) sees that number of '
                   r'(?P<bar_type>inserted|updated|deleted) files for '
                   r'"(?P<space_name>.*?)" shown on Synchronization files '
                   r'processing charts equals (?P<num>\d+) '
                   r'in Spaces page in Onepanel'))
    @repeat_failed(timeout=WAIT_BACKEND*10, interval=2)
    def assert_correct_number_displayed_on_sync_charts(selenium, browser_id,
                                                       bar_type, onepanel, num):
        num = int(num)
        record = onepanel(selenium[browser_id]).content.spaces.space
        displayed_num = getattr(record.sync_chart, bar_type)
        assert displayed_num == num, (
            'displayed {} as number of {} files on sync chart instead of '
>           'expected {}'.format(displayed_num, bar_type, num))
E       AssertionError: displayed 501 as number of deleted files on sync chart instead of expected 802

tests/gui/steps/onepanel/spaces.py:324: AssertionError