GUI acceptance tests using environment deployed from packages.
Build: #2281 failed
Job: Oneprovider data tab failed
user jumps to the end of the list after writing zzz to jump input[1oz 1op deployed]: Test case result
The below summarizes the result of the test " user jumps to the end of the list after writing zzz to jump input[1oz 1op deployed]" in build 2,281 of Onedata Products - gui acceptance pkg - Chrome oneprovider data tab tests.
- Description
- user jumps to the end of the list after writing zzz to jump input[1oz 1op deployed]
- Test class
- gui.scenarios.test_oneprovider_data_tab
- Method
- test_user_jumps_to_the_end_of_the_list_after_writing_zzz_to_jump_input[1oz_1op_deployed]
- Jira Issue
-
- Duration
- 2 mins
- Status
- Failed (New Failure)
Error Log
AssertionError: file_200 is not displayed on page, displayed files: ['file_176', 'file_177', 'file_178', 'file_179', 'file_180', 'file_181', 'file_182', 'file_183', 'file_184', 'file_185', 'file_186', 'file_187'] request = <FixtureRequest for <Function 'test_user_jumps_to_the_end_of_the_list_after_writing_zzz_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.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) <decorator-gen-877>: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 0x7fcd09531b70>}}) 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_176', 'file_177', 'file_178', 'file_179', 'file_180', 'file_181', 'file_182', 'file_183', 'file_184', 'file_185', 'file_186', 'file_187'] tests/gui/steps/oneprovider/file_browser.py:465: AssertionError