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

Build: #636 failed

Job: Spaces basic failed

user creates space using client1 and using client2 he sees that it has appeared[1oz 1op 1oc-RESt-web GUi]: Test case result

The below summarizes the result of the test " user creates space using client1 and using client2 he sees that it has appeared[1oz 1op 1oc-RESt-web GUi]" in build 636 of Onedata Products - mixed acceptance pkg - Chrome spaces basic tests.
Description
user creates space using client1 and using client2 he sees that it has appeared[1oz 1op 1oc-RESt-web GUi]
Test class
mixed.scenarios.test_spaces_basic
Method
test_user_creates_space_using_client1_and_using_client2_he_sees_that_it_has_appeared[1oz_1op_1oc-REST-web GUI]
Duration
32 secs
Status
Failed (New Failure)

Error Log

AssertionError: space "helloworld" not found
client1 = 'REST', client2 = 'web GUI'
request = <FixtureRequest for <Function 'test_user_creates_space_using_client1_and_using_client2_he_sees_that_it_has_appeared[1oz_1op_1oc-REST-web GUI]'>>

    
>   from tests.mixed.steps.space_basic import *

tests/mixed/scenarios/test_spaces_basic.py:41: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/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/space_basic.py:242: in assert_there_are_spaces_in_oz
    space_list)
tests/gui/meta_steps/onezone/spaces.py:184: in assert_spaces_have_appeared_in_oz_gui
    space_name, oz_page)
</usr/local/lib/python2.7/dist-packages/decorator.pyc:decorator-gen-472>:2: in assert_new_created_space_has_appeared_on_spaces
    ???
tests/utils/utils.py:80: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

selenium = {'browser': <selenium.webdriver.chrome.webdriver.WebDriver (session="4c859e124cb7b5b5a87566f128b2f86c")>, 'user1': <selenium.webdriver.chrome.webdriver.WebDriver (session="4c859e124cb7b5b5a87566f128b2f86c")>}
browser_id = 'user1', space_name = 'helloworld'
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 the sidebar'))
    @repeat_failed(timeout=WAIT_FRONTEND)
    def assert_new_created_space_has_appeared_on_spaces(selenium, browser_id,
                                                        space_name, oz_page):
        driver = selenium[browser_id]
        assert space_name in oz_page(driver)['data'].elements_list, \
>           'space "{}" not found'.format(space_name)
E       AssertionError: space "helloworld" not found

tests/gui/steps/onezone/spaces.py:79: AssertionError