GUI acceptance tests using environment deployed from packages.

Build: #2720 failed

Job: Transfers files was successful

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

user migrates file to remote provider[1oz 2op deployed]: Test case result

The below summarizes the result of the test " user migrates file to remote provider[1oz 2op deployed]" in build 2,720 of Onedata Products - gui acceptance pkg - Transfers files.
Description
user migrates file to remote provider[1oz 2op deployed]
Test class
gui.scenarios.test_oneprovider_transfers_files
Method
test_user_migrates_file_to_remote_provider[1oz_2op_deployed]
Jira Issue
Duration
7 mins
Status
Failed (Existing Failure)

Error Log

RuntimeError: no tab named ongoing in transfer tab
request = <FixtureRequest for <Function 'test_user_migrates_file_to_remote_provider[1oz_2op_deployed]'>>

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

/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:227: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:189: in _execute_scenario
    _execute_step_function(request, scenario, step, step_func)
/usr/local/lib/python3.8/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)
<decorator-gen-655>:2: in wait_for_ongoing_tranfers_to_finish
    ???
tests/utils/utils.py:88: in wrapper
    result = fun(*args, **kwargs)
tests/gui/steps/oneprovider/transfers.py:104: in wait_for_ongoing_tranfers_to_finish
    assert len(op_container(selenium[browser_id]).transfers.ongoing) == 0, \
tests/gui/utils/oneprovider/transfers.py:110: in ongoing
    self['ongoing'].click()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <tests.gui.utils.oneprovider.transfers._TransfersTab object at 0x7fdfad45bd60>
name = 'ongoing'

    def __getitem__(self, name):
        for tab in self.tabs:
            if name in tab.name.lower():
                return tab
        else:
>           raise RuntimeError('no tab named {} in transfer tab'.format(name))
E           RuntimeError: no tab named ongoing in transfer tab

tests/gui/utils/oneprovider/transfers.py:132: RuntimeError