GUI acceptance tests using environment deployed from packages.

Build: #7 failed

Job: Onezone harvesters basic failed

user successfully removes space with remove space privilege[1oz 1op elasticsearch]: Test case result

The below summarizes the result of the test " user successfully removes space with remove space privilege[1oz 1op elasticsearch]" in build 7 of Onedata Products - gui acceptance pkg - release-22.02.0-alpha1 - Chrome onezone harvesters basic tests.
Description
user successfully removes space with remove space privilege[1oz 1op elasticsearch]
Test class
gui.scenarios.test_onezone_harvesters_basic
Method
test_user_successfully_removes_space_with_remove_space_privilege[1oz_1op_elasticsearch]
Duration
4 mins
Status
Failed (Existing Failure)

Error Log

RuntimeError: no "space2" found in DiscoveryPage in Onezone page
request = <FixtureRequest for <Function 'test_user_successfully_removes_space_with_remove_space_privilege[1oz_1op_elasticsearch]'>>

    @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/utils/bdd_utils.py:77: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-1017>:2: in remove_space_from_harvester
    ???
tests/utils/utils.py:90: in wrapper
    return fun(*args, **kwargs)
tests/gui/meta_steps/onezone/harvesters.py:49: in remove_space_from_harvester
    oz_page)
tests/gui/steps/onezone/harvesters/discovery.py:175: in click_remove_space_option_in_menu_in_discover_spaces_page
    page.spaces_list[space_name].click_menu()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

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

    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 "space2" found in DiscoveryPage in Onezone page

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