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

Build: #3128 failed

Job: ACL two entries failed

user sets acl with two entries[1oz 1op 1oc-web GUi-oneclient1-[deny, content:read, content:write]-user-user2-file1]: Test case result

The below summarizes the result of the test " user sets acl with two entries[1oz 1op 1oc-web GUi-oneclient1-[deny, content:read, content:write]-user-user2-file1]" in build 3,128 of Onedata Products - mixed acceptance pkg - ACL two entries.
Description
user sets acl with two entries[1oz 1op 1oc-web GUi-oneclient1-[deny, content:read, content:write]-user-user2-file1]
Test class
mixed.scenarios.test_acl_two_entries
Method
test_user_sets_acl_with_two_entries[1oz_1op_1oc-web GUI-oneclient1-[deny, content:read, content:write]-user-user2-file1]
Duration
1 min
Status
Failed (New Failure)

Error Log

RuntimeError: no "Content" found in MemberAclPermission in ACL in Edit permission tab
request = <FixtureRequest for <Function 'test_user_sets_acl_with_two_entries[1oz_1op_1oc-web GUI-oneclient1-[deny, content:read, content:write]-user-user2-file1]'>>

    @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/mixed/steps/data_permissions.py:46: in grant_acl_privileges_in_op
    grant_acl_privileges_in_op_gui(selenium, user, path, priv, name,
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
tests/gui/meta_steps/oneprovider/permissions.py:192: in grant_acl_privileges_in_op_gui
    _set_acl_privilages_for_selected(browser_id, selenium, popups, tmp_memory,
tests/gui/meta_steps/oneprovider/permissions.py:152: in _set_acl_privilages_for_selected
    set_acl_entry_in_op_gui(selenium, browser_id, priv, name, modals, popups)
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
tests/gui/meta_steps/oneprovider/permissions.py:127: in set_acl_entry_in_op_gui
    select_acl_options(selenium, browser_id, priv, modals, name)
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-857>:2: in select_acl_options
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/oneprovider/permissions.py:117: in select_acl_options
    _change_acl_options(option_list, subject, change)
tests/gui/steps/oneprovider/permissions.py:79: in _change_acl_options
    parent_permission = subject.acl_permission_group[
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <tests.gui.utils.core.web_objects.PageObjectsSequence object at 0x7f8f935d4b80>
sel = 'Content'

    def __getitem__(self, sel):
        if isinstance(sel, int):
            item = self._getitem_by_idx(sel)
            if item:
                return self.cls(self.driver, item, self.parent)
            else:
                raise RuntimeError('Index out of bound. Requested item at '
                                   '{idx} while limit is {limit} in '
                                   '{parent}'.format(idx=sel, limit=len(self),
                                                     parent=self.parent))
        elif isinstance(sel, str):
            item = self._getitem_by_id(sel)
            if item:
                return item
            else:
>               raise RuntimeError('no "{id}" found in '
                                   '{parent}'.format(id=sel,
                                                     parent=self.parent))
E               RuntimeError: no "Content" found in MemberAclPermission in ACL in Edit permission tab

tests/gui/utils/core/web_objects.py:83: RuntimeError