GUI acceptance tests using environment deployed from packages.

Build: #1455 failed

Job: Onezone spaces multiuser failed

user adds two harvesters to space using invitation tokens and removes them from it[1oz 1op deployed]: Test case result

The below summarizes the result of the test " user adds two harvesters to space using invitation tokens and removes them from it[1oz 1op deployed]" in build 1,455 of Onedata Products - gui acceptance pkg - Chrome onezone spaces multiuser tests.
Description
user adds two harvesters to space using invitation tokens and removes them from it[1oz 1op deployed]
Test class
gui.scenarios.test_onezone_spaces_multiuser
Method
test_user_adds_two_harvesters_to_space_using_invitation_tokens_and_removes_them_from_it[1oz_1op_deployed]
Duration
6 mins
Status
Failed (New Failure)

Error Log

RuntimeError: no  with "Confirm" text found in Tokens page
request = <FixtureRequest for <Function 'test_user_adds_two_harvesters_to_space_using_invitation_tokens_and_removes_them_from_it[1oz_1op_deployed]'>>

    @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-941>:2: in add_element_with_copied_token
    ???
tests/utils/utils.py:90: in wrapper
    return fun(*args, **kwargs)
tests/gui/meta_steps/onezone/tokens.py:88: in add_element_with_copied_token
    click_on_confirm_button_on_tokens_page(selenium, browser_id, oz_page)
tests/utils/bdd_utils.py:77: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-251>:2: in click_on_confirm_button_on_tokens_page
    ???
tests/utils/utils.py:90: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/onezone/tokens.py:94: in click_on_confirm_button_on_tokens_page
    oz_page(selenium[browser_id])['tokens'].confirm_button()
tests/gui/utils/core/web_elements.py:58: in __get__
    elem = super(WebItem, self).__get__(instance, owner)
tests/gui/utils/core/web_elements.py:52: in __get__
    lambda: self._format_msg(err_msg, instance,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

web_elem_root = <selenium.webdriver.chrome.webdriver.WebDriver (session="2ec143551933a7aac7dfd187bf7e4de4")>
css_sel = 'button', text = 'Confirm'
err_msg = 'no  with "Confirm" text found in Tokens page'

    def find_web_elem_with_text(web_elem_root, css_sel, text, err_msg):
        items = web_elem_root.find_elements_by_css_selector(css_sel)
        _scroll_to_css_sel(web_elem_root, css_sel)
        for item in items:
            if item.text.lower() == text.lower():
                return item
        else:
            with suppress(TypeError):
                err_msg = err_msg()
>           raise RuntimeError(err_msg)
E           RuntimeError: no  with "Confirm" text found in Tokens page

tests/gui/utils/generic.py:111: RuntimeError