GUI acceptance tests using environment deployed from packages.

Build: #1796 failed

Job: Storage sync failed

user sees files update when detect modifications is set[1oz 1op deployed]: Test case result

The below summarizes the result of the test " user sees files update when detect modifications is set[1oz 1op deployed]" in build 1,796 of Onedata Products - gui acceptance pkg - Chrome storage sync tests.
Description
user sees files update when detect modifications is set[1oz 1op deployed]
Test class
gui.scenarios.test_storage_sync
Method
test_user_sees_files_update_when_detect_modifications_is_set[1oz_1op_deployed]
Duration
9 mins
Status
Failed (New Failure)

Error Log

RuntimeError: file file2.txt has not been downloaded
request = <FixtureRequest for <Function 'test_user_sees_files_update_when_detect_modifications_is_set[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:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
tests/gui/meta_steps/oneprovider/data.py:173: in check_file_structure_in_browser
    op_container, tmpdir, which_browser)
tests/gui/meta_steps/oneprovider/data.py:216: in _check_files_tree
    which_browser)
tests/gui/meta_steps/oneprovider/data.py:216: in _check_files_tree
    which_browser)
tests/gui/meta_steps/oneprovider/data.py:225: in _check_files_tree
    tmpdir)
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-667>:2: in has_downloaded_file_content
    ???
tests/utils/utils.py:90: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

browser_id = 'browser2', file_name = 'file2.txt', content = '11111'
tmpdir = local('/tmp/pytest-of-bamboo/pytest-0/test_user_sees_files_update_wh1')

    @wt(parsers.parse('user of {browser_id} sees that content of downloaded '
                      'file "{file_name}" is equal to: "{content}"'))
    @repeat_failed(timeout=WAIT_BACKEND)
    def has_downloaded_file_content(browser_id, file_name, content, tmpdir):
        downloaded_file = tmpdir.join(browser_id, 'download', file_name)
        if downloaded_file.isfile():
            with downloaded_file.open() as f:
                file_content = ''.join(f.readlines())
                file_content = file_content.strip()
                assert content == file_content, ('expected {} as {} content, '
                                                 'instead got {}'.format(content,
                                                                         file_name,
                                                                         file_content))
        else:
>           raise RuntimeError('file {} has not been downloaded'.format(file_name))
E           RuntimeError: file file2.txt has not been downloaded

tests/gui/steps/oneprovider/data_tab.py:481: RuntimeError