GUI acceptance tests using environment deployed from packages.

Build: #7 failed

Job: Onezone harvesters basic failed

user successfully adds space to harvester using available spaces dropdown[1oz 1op elasticsearch]: Test case result

The below summarizes the result of the test " user successfully adds space to harvester using available spaces dropdown[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 adds space to harvester using available spaces dropdown[1oz 1op elasticsearch]
Test class
gui.scenarios.test_onezone_harvesters_basic
Method
test_user_successfully_adds_space_to_harvester_using_available_spaces_dropdown[1oz_1op_elasticsearch]
Duration
2 mins
Status
Failed (Existing Failure)

Error Log

AssertionError: space "space1" not found
request = <FixtureRequest for <Function 'test_user_successfully_adds_space_to_harvester_using_available_spaces_dropdown[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-677>:2: in assert_space_has_appeared_in_discovery_page
    ???
tests/utils/utils.py:90: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

selenium = {'browser': <selenium.webdriver.chrome.webdriver.WebDriver (session="f34f41a4dee7136a930c4ba71f4928a1")>}
browser_id = 'browser', space_name = 'space1'
oz_page = <class 'tests.gui.utils.onezone.OZLoggedIn'>

    @wt(parsers.parse('user of {browser_id} sees that "{space_name}" has appeared '
                      'on the spaces list in discovery page'))
    @repeat_failed(timeout=WAIT_FRONTEND)
    def assert_space_has_appeared_in_discovery_page(selenium, browser_id,
                                                    space_name, oz_page):
        driver = selenium[browser_id]
        assert space_name in oz_page(driver)['discovery'].spaces_list, \
>           'space "{}" not found'.format(space_name)
E       AssertionError: space "space1" not found

tests/gui/steps/onezone/harvesters/discovery.py:166: AssertionError