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

Build: #1081 failed

Job: Groups basic failed

user removes group from parent group[1oz 1op 1oc-RESt-web GUi]: Test case result

The below summarizes the result of the test " user removes group from parent group[1oz 1op 1oc-RESt-web GUi]" in build 1,081 of Onedata Products - mixed acceptance pkg - Chrome groups basic tests.
Description
user removes group from parent group[1oz 1op 1oc-RESt-web GUi]
Test class
mixed.scenarios.test_groups_basic
Method
test_user_removes_group_from_parent_group[1oz_1op_1oc-REST-web GUI]
Duration
1 min
Status
Failed (New Failure)

Error Log

RuntimeError: no "user1" found in MembersList in MembersPage in GroupsPage in Onezone page
request = <FixtureRequest for <Function 'test_user_removes_group_from_parent_group[1oz_1op_1oc-REST-web GUI]'>>

    @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/mixed/steps/group_basic.py:164: in assert_subgroups
    parent, onepanel)
tests/gui/meta_steps/onezone/groups.py:129: in assert_subgroups_using_op_gui
    parent, onepanel)
tests/gui/meta_steps/onezone/groups.py:121: in _select_mode_view_in_members_subpage
    list_type, onepanel)
tests/utils/bdd_utils.py:76: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-858>:2: in click_element_in_members_list
    ???
tests/utils/utils.py:80: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/onezone/members.py:254: in click_element_in_members_list
    getattr(page, list_type).items[member_name].click()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

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

    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 "user1" found in MembersList in MembersPage in GroupsPage in Onezone page

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