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

Build: #3107 failed

Job: Access tokens path caveats failed

using client1 user cannot create file at path that he does not have access after getting token with caveat set for path created by web gui[1oz 1op 1oc-oneclient1]: Test case result

The below summarizes the result of the test " using client1 user cannot create file at path that he does not have access after getting token with caveat set for path created by web gui[1oz 1op 1oc-oneclient1]" in build 3,107 of Onedata Products - mixed acceptance pkg - Access tokens path caveats.
Description
using client1 user cannot create file at path that he does not have access after getting token with caveat set for path created by web gui[1oz 1op 1oc-oneclient1]
Test class
mixed.scenarios.test_access_tokens_path_caveats
Method
test_using_client1_user_cannot_create_file_at_path_that_he_does_not_have_access_after_getting_token_with_caveat_set_for_path_created_by_web_gui[1oz_1op_1oc-oneclient1]
Duration
2 mins
Status
Failed (Existing Failure)

Error Log

RuntimeError: no "space1" found in DataPage in Onezone page
request = <FixtureRequest for <Function 'test_using_client1_user_cannot_create_file_at_path_that_he_does_not_have_access_after_getting_token_with_caveat_set_for_path_created_by_web_gui[1oz_1op_1oc-oneclient1]'>>

    @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_basic.py:162: in see_item_in_op
    see_items_in_op_gui(selenium, user, path, item_name, tmp_memory,
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
tests/gui/meta_steps/oneprovider/data.py:118: in see_items_in_op_gui
    _click_on_option_of_space_on_left_sidebar_menu(
<decorator-gen-469>:2: in _click_on_option_of_space_on_left_sidebar_menu
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/onezone/spaces.py:306: in _click_on_option_of_space_on_left_sidebar_menu
    page = click_on_space_in_menu_list(oz_page, driver, space_name, force=force)
tests/gui/steps/onezone/spaces.py:40: in click_on_space_in_menu_list
    if not page.spaces_header_list[name].is_active():
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

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

    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 "space1" found in DataPage in Onezone page

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