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

Build: #2149 failed

Job: QoS failed

user adds qos requirements to file using client1 and using client2 sees qos file status[1oz 1op 1oc-web GUi-RESt]: Test case result

The below summarizes the result of the test " user adds qos requirements to file using client1 and using client2 sees qos file status[1oz 1op 1oc-web GUi-RESt]" in build 2,149 of Onedata Products - mixed acceptance pkg - Chrome QoS tests.
Description
user adds qos requirements to file using client1 and using client2 sees qos file status[1oz 1op 1oc-web GUi-RESt]
Test class
mixed.scenarios.test_qos
Method
test_user_adds_qos_requirements_to_file_using_client1_and_using_client2_sees_qos_file_status[1oz_1op_1oc-web GUI-REST]
Duration
5 mins
Status
Failed (New Failure)

Error Log

RuntimeError: Css element wtih "Save" text not found
request = <FixtureRequest for <Function 'test_user_adds_qos_requirements_to_file_using_client1_and_using_client2_sees_qos_file_status[1oz_1op_1oc-web GUI-REST]'>>

    @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-871>:2: in create_qos_requirement_in_op
    ???
tests/utils/utils.py:90: in wrapper
    return fun(*args, **kwargs)
tests/mixed/steps/qos.py:25: in create_qos_requirement_in_op
    op_container, popups, space_name)
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-863>:2: in add_qos_requirement_in_modal
    ???
tests/utils/utils.py:90: in wrapper
    return fun(*args, **kwargs)
tests/gui/meta_steps/oneprovider/qos.py:65: in add_qos_requirement_in_modal
    replicas_number)
tests/gui/meta_steps/oneprovider/qos.py:49: in _add_qos_requirement_in_modal
    click_modal_button(selenium, browser_id, save_button, modal, modals)
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-437>:2: in click_modal_button
    ???
tests/utils/utils.py:90: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/modal.py:314: in click_modal_button
    getattr(getattr(modals(selenium[browser_id]), modal), button)()
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="50f44fbc1f12d4259917f3c20f28daeb", element="9e970672-2fb4-4184-b154-1050d8a5d3b0")>
css_sel = '.ready', text = 'Save'
err_msg = <function WebElementWithText.__get__.<locals>.<lambda> at 0x7efd04532268>

    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 "Save" text not found

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