GUI acceptance tests using environment deployed from packages.
Build: #2742 failed
Job: Oneprovider data tab failed
user jumps to beginning of file list after writing aaa to jump input[1oz 1op deployed]: Test case result
The below summarizes the result of the test " user jumps to beginning of file list after writing aaa to jump input[1oz 1op deployed]" in build 2,742 of Onedata Products - gui acceptance pkg - Oneprovider data tab.
- Description
- user jumps to beginning of file list after writing aaa to jump input[1oz 1op deployed]
- Test class
- gui.scenarios.test_oneprovider_data_tab
- Method
- test_user_jumps_to_beginning_of_file_list_after_writing_aaa_to_jump_input[1oz_1op_deployed]
- Duration
- 2 mins
- Status
- Failed (New Failure)
Error Log
AssertionError: file_200 is not displayed on page, displayed files: ['file_001', 'file_002', 'file_003', 'file_004', 'file_005', 'file_006', 'file_007', 'file_008', 'file_009', 'file_010'] request = <FixtureRequest for <Function 'test_user_jumps_to_beginning_of_file_list_after_writing_aaa_to_jump_input[1oz_1op_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-959>:2: in assert_item_displayed_on_page ??? tests/utils/utils.py:95: in wrapper return fun(*args, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ browser_id = 'browser', item_list = '"file_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 0x7f266b2df130>}}) option = 'is', which = 'file' @wt(parsers.re('user of (?P<browser_id>.*?) sees that items? named' ' (?P<item_list>.*?) (?P<option>is|are|is not|are not) ' 'currently visible in (?P<which>.*?) browser')) @repeat_failed(timeout=WAIT_FRONTEND) def assert_item_displayed_on_page(browser_id, item_list, tmp_memory, option, which): browser = tmp_memory[browser_id][f'{which}_browser'] visible_files = browser.names_of_visible_elems() items = parse_seq(item_list) data = [f for f in visible_files if f] for name in items: if 'not' in option: assert name not in data, f'{name} is displayed on page' else: > assert name in data, (f'{name} is not displayed on page, ' f'displayed files: {data}') E AssertionError: file_200 is not displayed on page, displayed files: ['file_001', 'file_002', 'file_003', 'file_004', 'file_005', 'file_006', 'file_007', 'file_008', 'file_009', 'file_010'] tests/gui/steps/oneprovider/file_browser.py:483: AssertionError