Acceptance tests using different clients concurrently. Environment deployed from packages.

Build: #328 failed

Job: Onepanel failed

user supports space with storage sync with no options enabled[1oz 1op 1oc-RESt-web GUi-RESt]: Test case result

The below summarizes the result of the test " user supports space with storage sync with no options enabled[1oz 1op 1oc-RESt-web GUi-RESt]" in build 328 of Onedata Products - mixed acceptance pkg - Chrome onepanel tests.
Description
user supports space with storage sync with no options enabled[1oz 1op 1oc-RESt-web GUi-RESt]
Test class
mixed.scenarios.test_onepanel_basic
Method
test_user_supports_space_with_storage_sync_with_no_options_enabled[1oz_1op_1oc-REST-web GUI-REST]
Duration
38 secs
Status
Failed (Existing Failure)

Error Log

RuntimeError: cannot click on toolbar btn in SpaceRecord in SpacesContentPage in content in Provider Panel
client1 = 'REST', client2 = 'web GUI', client3 = 'REST'
request = <FixtureRequest for <Function 'test_user_supports_space_with_storage_sync_with_no_options_enabled[1oz_1op_1oc-REST-web GUI-REST]'>>

    from tests.gui.steps.oneprovider.groups import *
>   from tests.gui.steps.oneprovider.spaces import *

tests/mixed/scenarios/test_onepanel_basic.py:45: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python2.7/dist-packages/pytest_bdd/scenario.py:195: in _execute_scenario
    _execute_step_function(request, scenario, step, step_func)
/usr/local/lib/python2.7/dist-packages/pytest_bdd/scenario.py:137: in _execute_step_function
    step_func(**kwargs)
tests/mixed/steps/onepanel_basic.py:502: in configure_sync_parameters_for_space_in_op_panel
    config, sync_type)
tests/gui/meta_steps/onepanel/spaces.py:90: in configure_sync_parameters_for_space_in_op_panel_gui
    onepanel)
<decorator-gen-150>:2: in wt_expands_toolbar_icon_for_space_in_onepanel
    ???
tests/utils/utils.py:71: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/onepanel/spaces.py:292: in wt_expands_toolbar_icon_for_space_in_onepanel
    record.toolbar.click()
tests/gui/utils/core/base.py:82: in click
    lambda: 'cannot click on {}'.format(self))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

driver = <selenium.webdriver.chrome.webdriver.WebDriver (session="0d22d92a7034a33d02d43878b0062907")>
web_elem = <selenium.webdriver.remote.webelement.WebElement (session="0d22d92a7034a33d02d43878b0062907", element="0.6924217337658944-53")>
err_msg = 'cannot click on toolbar btn in SpaceRecord in SpacesContentPage in content in Provider Panel'
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 toolbar btn in SpaceRecord in SpacesContentPage in content in Provider Panel

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