GUI acceptance tests using environment deployed from packages.

Build: #421 failed

Job: Oneprovider data tab failed

user changes directory while uploading bunch of files[1oz 1op deployed]: Test case result

The below summarizes the result of the test " user changes directory while uploading bunch of files[1oz 1op deployed]" in build 421 of Onedata Products - gui acceptance pkg - Chrome oneprovider data tab tests.
Description
user changes directory while uploading bunch of files[1oz 1op deployed]
Test class
gui.scenarios.test_oneprovider_data_tab
Method
test_user_changes_directory_while_uploading_bunch_of_files[1oz_1op_deployed]
Duration
1 min
Status
Failed (New Failure)

Error Log

AssertionError: displayed number of files 0 does not match expected 70
request = <FixtureRequest for <Function 'test_user_changes_directory_while_uploading_bunch_of_files[1oz_1op_deployed]'>>

    @scenario('User changes directory while uploading bunch of files')
>   def test_user_changes_directory_while_uploading_bunch_of_files():

tests/gui/scenarios/test_oneprovider_data_tab.py:85: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/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-336>:2: in assert_num_of_files_are_displayed_in_file_browser
    ???
tests/utils/utils.py:71: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

browser_id = 'browser', num = 70
tmp_memory = defaultdict(<type 'dict'>, {'browser': {'shares': {}, 'mailbox': {}, 'window':...ts.gui.utils.oneprovider.file_browser._FileBrowser object at 0x7f96d0622650>}})

    @when(parsers.re('user of (?P<browser_id>.+?) sees that there '
                     '(is 1|are (?P<num>\d+)) items? in file browser'))
    @then(parsers.re('user of (?P<browser_id>.+?) sees that there '
                     '(is 1|are (?P<num>\d+)) items? in file browser'))
    @repeat_failed(timeout=WAIT_BACKEND)
    def assert_num_of_files_are_displayed_in_file_browser(browser_id, num,
                                                          tmp_memory):
        browser = tmp_memory[browser_id]['file_browser']
        err_msg = 'displayed number of files {} does not match expected {}'
        files_num = browser.files.count()
        num = int(num) if num is not None else 1
>       assert files_num == num, err_msg.format(files_num, num)
E       AssertionError: displayed number of files 0 does not match expected 70

tests/gui/steps/oneprovider/file_browser.py:188: AssertionError