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

Build: #714 failed

Job: Spaces basic failed

user set space as home using client1 and using client2 he sees that it has been set as home space[1oz 1op 1oc-web GUi-RESt]: Test case result

The below summarizes the result of the test " user set space as home using client1 and using client2 he sees that it has been set as home space[1oz 1op 1oc-web GUi-RESt]" in build 714 of Onedata Products - mixed acceptance pkg - Chrome spaces basic tests.
Description
user set space as home using client1 and using client2 he sees that it has been set as home space[1oz 1op 1oc-web GUi-RESt]
Test class
mixed.scenarios.test_spaces_basic
Method
test_user_set_space_as_home_using_client1_and_using_client2_he_sees_that_it_has_been_set_as_home_space[1oz_1op_1oc-web GUI-REST]
Duration
1 min
Status
Failed (Existing Failure)

Error Log

RuntimeError: no "Toggle default space" found in Member menu popup
request = <FixtureRequest for <Function 'test_user_set_space_as_home_using_client1_and_using_client2_he_sees_that_it_has_been_set_as_home_space[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/mixed/steps/space_basic.py:91: in set_space_as_home_in_oz
    space_name, popups)
tests/gui/meta_steps/onezone/spaces.py:95: in set_space_as_home_in_oz_using_gui
    click_on_option_in_menu(selenium, user, button, oz_page, popups)
<decorator-gen-484>:2: in click_on_option_in_menu
    ???
tests/utils/utils.py:80: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/onezone/spaces.py:145: in click_on_option_in_menu
    popups(driver).member_menu.menu[button]()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <tests.gui.utils.core.web_objects.PageObjectsSequence object at 0x7f6aa036b518>
sel = 'Toggle default space'

    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 "Toggle default space" found in Member menu popup

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