GUI acceptance tests using environment deployed from packages.

Build: #1108 failed

Job: Multiprovider basic failed

user sees file is not visible after its upload has been canceled[1oz 2op deployed]: Test case result

The below summarizes the result of the test " user sees file is not visible after its upload has been canceled[1oz 2op deployed]" in build 1,108 of Onedata Products - gui acceptance pkg - Chrome multiprovider basic tests.
Description
user sees file is not visible after its upload has been canceled[1oz 2op deployed]
Test class
gui.scenarios.test_multiprovider_basic
Method
test_user_sees_file_is_not_visible_after_its_upload_has_been_canceled[1oz_2op_deployed]
Jira Issue
Duration
2 mins
Status
Failed (New Failure)

Error Log

AssertionError: There are 0 files in file browser when should be 200
request = <FixtureRequest for <Function 'test_user_sees_file_is_not_visible_after_its_upload_has_been_canceled[1oz_2op_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)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

browser_id = 'browser', count = 200
tmp_memory = defaultdict(<class 'dict'>, {'browser': {'shares': {}, 'spaces': {}, 'groups': {}, 'mailbox': {}, 'oz': {}, 'window': {'modal': None}, 'file_browser': <tests.gui.utils.oneprovider.file_browser._FileBrowser object at 0x7f17745e5240>}})

    @wt(parsers.parse('user of {browser_id} scrolls to the bottom of file browser '
                      'and sees there are {count} files'))
    def count_files_while_scrolling(browser_id, count: int, tmp_memory):
        browser = tmp_memory[browser_id]['file_browser']
        detected_files = []
        tmp_files = browser.names_of_visible_elems()
        new_files = [f for f in tmp_files if f]
        while new_files:
            detected_files.extend(new_files)
            browser.scroll_to_bottom()
            tmp_files = browser.names_of_visible_elems()
            new_files = [f for f in tmp_files if f and f not in detected_files]
        else:
            err_msg = (f'There are {len(detected_files)} files in file browser '
                       f'when should be {count}')
>           assert len(detected_files) == count, err_msg
E           AssertionError: There are 0 files in file browser when should be 200

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