GUI acceptance tests using environment deployed from packages.

Build: #2820 failed

Job: Oneprovider archives failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

    Final

user sees directory tree in archive browser after creating plain archive[1oz 1op deployed]: Test case result

The below summarizes the result of the test " user sees directory tree in archive browser after creating plain archive[1oz 1op deployed]" in build 2,820 of Onedata Products - gui acceptance pkg - Oneprovider archives.
Description
user sees directory tree in archive browser after creating plain archive[1oz 1op deployed]
Test class
gui.scenarios.test_oneprovider_archives
Method
test_user_sees_directory_tree_in_archive_browser_after_creating_plain_archive[1oz_1op_deployed]
Duration
4 mins
Status
Failed (New Failure)

Error Log

RuntimeError: Click and enter has not entered the directory
request = <FixtureRequest for <Function 'test_user_sees_directory_tree_in_archive_browser_after_creating_plain_archive[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)
tests/gui/meta_steps/oneprovider/files_tree.py:86: in check_file_structure_in_browser
    check_tree_browser(
tests/gui/meta_steps/oneprovider/files_tree.py:54: in check_tree_browser
    click_and_press_enter_on_item_in_browser(
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-617>:2: in click_and_press_enter_on_item_in_browser
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/oneprovider/browser.py:37: in click_and_press_enter_on_item_in_browser
    click_and_enter_with_check(driver, op_container, browser, which_browser,
<decorator-gen-619>:2: in click_and_enter_with_check
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

driver = <selenium.webdriver.chrome.webdriver.WebDriver (session="37c4118b678ed8fc031279fffd0c8109")>
op_container = <class 'tests.gui.utils.oneprovider.OPLoggedIn'>
browser = <tests.gui.utils.oneprovider.archive_file_browser._ArchiveFileBrowser object at 0x7f8757929460>
which_browser = 'archive_file_browser', item_name = 'dir1'

    @repeat_failed(timeout=WAIT_BACKEND)
    def click_and_enter_with_check(driver, op_container, browser, which_browser,
                                   item_name):
        # this function does not check correctly if parent and children directory
        # have the same name
        browser.data[item_name].click_and_enter()
        if item_name.startswith('dir'):
            for _ in range(5):
                breadcrumbs = check_if_breadcrumbs_on_share_page(driver,
                                                                 op_container,
                                                                 which_browser)
                if breadcrumbs.split('/')[-1] == item_name:
                    return
                else:
                    time.sleep(1)
>           raise RuntimeError(f'Click and enter has not entered the directory')
E           RuntimeError: Click and enter has not entered the directory

tests/gui/steps/oneprovider/browser.py:56: RuntimeError