Acceptance tests using different clients concurrently. Environment deployed from packages.

Build: #2323 failed

Job: Access tokens failed

luma local feed onedata user mappings on posix imported storage are respected in web interface and in oneclient[1oz 1op luma oneclient]: Test case result

The below summarizes the result of the test " luma local feed onedata user mappings on posix imported storage are respected in web interface and in oneclient[1oz 1op luma oneclient]" in build 2,323 of Onedata Products - mixed acceptance pkg - Chrome LUMA tests.
Description
luma local feed onedata user mappings on posix imported storage are respected in web interface and in oneclient[1oz 1op luma oneclient]
Test class
mixed.scenarios.test_luma
Method
test_luma_local_feed_onedata_user_mappings_on_posix_imported_storage_are_respected_in_web_interface_and_in_oneclient[1oz_1op_luma_oneclient]
Jira Issue
Duration
1 min
Status
Failed (New Failure)

Error Log

RuntimeError: Css element wtih "Close" text not found
request = <FixtureRequest for <Function 'test_luma_local_feed_onedata_user_mappings_on_posix_imported_storage_are_respected_in_web_interface_and_in_oneclient[1oz_1op_luma_oneclient]'>>

    @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)
tests/mixed/steps/data_basic.py:764: in check_file_owner_web_gui
    popups)
tests/gui/meta_steps/oneprovider/data.py:497: in check_file_owner
    close_modal(selenium, browser_id, modal_name, modals)
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-361>:2: in close_modal
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/modal.py:416: in close_modal
    getattr(modals(selenium[browser_id]), modal).close()
tests/gui/utils/core/web_elements.py:58: in __get__
    elem = super(WebItem, self).__get__(instance, owner)
tests/gui/utils/core/web_elements.py:52: in __get__
    lambda: self._format_msg(err_msg, instance,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

web_elem_root = <selenium.webdriver.remote.webelement.WebElement (session="5eb948c5af71e332158057c819d94f8b", element="87d3fcfc-8062-4056-9e5a-8621fd7bcca1")>
css_sel = '.btn-default', text = 'Close'
err_msg = <function WebElementWithText.__get__.<locals>.<lambda> at 0x7f05e49d4f28>

    def find_web_elem_with_text(web_elem_root, css_sel, text, err_msg):
        items = web_elem_root.find_elements_by_css_selector(css_sel)
        _scroll_to_css_sel(web_elem_root, css_sel)
        for item in items:
            if item.text.lower() == text.lower():
                return item
        else:
>           raise RuntimeError(f'Css element wtih "{text}" text not found')
E           RuntimeError: Css element wtih "Close" text not found

tests/gui/utils/generic.py:117: RuntimeError