GUI acceptance tests using environment deployed from packages.

Build: #854 failed

Job: Multiprovider basic failed

user supports space by two providers and sees that there are two provider in file browser[1oz 2op deployed]: Test case result

The below summarizes the result of the test " user supports space by two providers and sees that there are two provider in file browser[1oz 2op deployed]" in build 854 of Onedata Products - gui acceptance pkg - Chrome multiprovider basic tests.
Description
user supports space by two providers and sees that there are two provider in file browser[1oz 2op deployed]
Test class
gui.scenarios.test_multiprovider_basic
Method
test_user_supports_space_by_two_providers_and_sees_that_there_are_two_provider_in_file_browser[1oz_2op_deployed]
Jira Issue
Duration
4 mins
Status
Failed (Existing Failure)

Error Log

RuntimeError: no  with "Copy" text found in GetSupportPage in SpaceProvidersPage in DataPage in Onezone page
request = <FixtureRequest for <Function 'test_user_supports_space_by_two_providers_and_sees_that_there_are_two_provider_in_file_browser[1oz_2op_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/gui/meta_steps/onezone/spaces.py:51: in send_support_token_in_oz_using_gui
    copy_token(selenium, user, oz_page)
tests/utils/bdd_utils.py:76: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-378>:2: in copy_token
    ???
tests/utils/utils.py:80: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/onezone/spaces.py:424: in copy_token
    oz_page(selenium[browser_id])['data'].providers_page.get_support_page.copy()
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.remote.webelement.WebElement (session="adc0508330f7f437d32d58fbfd655ae9", element="ac455719-4e32-46f2-8916-9dc952a5fd04")>
css_sel = '.copy-btn', text = 'Copy'
err_msg = 'no  with "Copy" text found in GetSupportPage in SpaceProvidersPage in DataPage in Onezone 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 "Copy" text found in GetSupportPage in SpaceProvidersPage in DataPage in Onezone page

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