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

Build: #3107 failed

Job: Access tokens failed

using client1 user cannot create file after getting token with expiration time set in caveat created by web gui[1oz 1op 1oc-RESt]: Test case result

The below summarizes the result of the test " using client1 user cannot create file after getting token with expiration time set in caveat created by web gui[1oz 1op 1oc-RESt]" in build 3,107 of Onedata Products - mixed acceptance pkg - Access tokens.
Description
using client1 user cannot create file after getting token with expiration time set in caveat created by web gui[1oz 1op 1oc-RESt]
Test class
mixed.scenarios.test_access_tokens
Method
test_using_client1_user_cannot_create_file_after_getting_token_with_expiration_time_set_in_caveat_created_by_web_gui[1oz_1op_1oc-REST]
Duration
3 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_after_getting_token_with_expiration_time_set_in_caveat_created_by_web_gui[1oz_1op_1oc-REST]'>>

    @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 0x7f1e2fc591c0>
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