GUI acceptance tests using environment deployed from packages.

Build: #1101 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 1,101 of Onedata Products - gui acceptance pkg - 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 (Existing Failure)

Error Log

AssertionError: displayed 802 as number of inserted files on sync chart instead of expected 501
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:76: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-186>:2: in assert_correct_number_displayed_on_sync_charts
    ???
tests/utils/utils.py:80: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

selenium = {'browser1': <selenium.webdriver.chrome.webdriver.WebDriver (session="b0ca34acf5026365bb794180e69486f4")>, 'browser2': <selenium.webdriver.chrome.webdriver.WebDriver (session="266b4e8cef5ecb02e5226d1c7025a014")>}
browser_id = 'browser1', bar_type = 'inserted'
onepanel = <class 'tests.gui.utils.onepanel.Onepanel'>, num = 501

    @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_FRONTEND)
    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 802 as number of inserted files on sync chart instead of expected 501

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