GUI acceptance tests using environment deployed from packages.

Build: #1119 failed

Job: Onezone spaces basic failed

user fails to see space without view space privilege[1oz 1op deployed]: Test case result

The below summarizes the result of the test " user fails to see space without view space privilege[1oz 1op deployed]" in build 1,119 of Onedata Products - gui acceptance pkg - Chrome onezone spaces basic tests.
Description
user fails to see space without view space privilege[1oz 1op deployed]
Test class
gui.scenarios.test_onezone_spaces_basic
Method
test_user_fails_to_see_space_without_view_space_privilege[1oz_1op_deployed]
Duration
1 min
Status
Failed (Existing Failure)

Error Log

RuntimeError: cannot click on button btn with "Members" text in Space in DataPage in Onezone page
request = <FixtureRequest for <Function 'test_user_fails_to_see_space_without_view_space_privilege[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:76: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-476>:2: in click_on_option_of_space_on_left_sidebar_menu
    ???
tests/utils/utils.py:80: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/onezone/spaces.py:235: in click_on_option_of_space_on_left_sidebar_menu
    transform(option)).click()
tests/gui/utils/core/base.py:82: in click
    lambda: 'cannot click on {}'.format(self))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

driver = <selenium.webdriver.chrome.webdriver.WebDriver (session="1df642d58982872d950ff2b8dd68c28e")>
web_elem = <selenium.webdriver.remote.webelement.WebElement (session="1df642d58982872d950ff2b8dd68c28e", element="22475cff-8d0f-4c76-9f66-767756c6681c")>
err_msg = 'cannot click on button btn with "Members" text in Space in DataPage in Onezone page'
delay = True

    def click_on_web_elem(driver, web_elem, err_msg, delay=True):
        disabled = 'disabled' in web_elem.get_attribute('class')
        # scroll to make the element visible
        if not web_elem.is_displayed():
            web_elem.location_once_scrolled_into_view
        if web_elem.is_enabled() and web_elem.is_displayed() and not disabled:
            # TODO make optional sleep and localize only those tests that need it or find better alternative
            # currently checking if elem is enabled not always work (probably after striping disabled from web elem
            # elem is not immediately clickable)
            if delay:
                sleep(delay if isinstance(delay, float) else 0.25)
            action = ActionChains(driver)
            action.move_to_element(web_elem).click_and_hold(web_elem).release(web_elem)
            action.perform()
        else:
            with suppress(TypeError):
                err_msg = err_msg()
>           raise RuntimeError(err_msg)
E           RuntimeError: cannot click on button btn with "Members" text in Space in DataPage in Onezone page

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