GUI acceptance tests using environment deployed from packages.

Build: #615 failed

Job: Oneprovider ACL basic failed

user sets acl for parent group of a group that does not belong to space[1oz 1op deployed-all except [delete]-group-group2-fails]: Test case result

The below summarizes the result of the test " user sets acl for parent group of a group that does not belong to space[1oz 1op deployed-all except [delete]-group-group2-fails]" in build 615 of Onedata Products - gui acceptance pkg - Chrome oneprovider ACL basic.
Description
user sets acl for parent group of a group that does not belong to space[1oz 1op deployed-all except [delete]-group-group2-fails]
Test class
gui.scenarios.test_oneprovider_acl_basic
Method
test_user_sets_acl_for_parent_group_of_a_group_that_does_not_belong_to_space[1oz_1op_deployed-all except [delete]-group-group2-fails]
Duration
1 min
Status
Failed (New Failure)

Error Log

TimeoutException: Message: waiting for modal to disappear
privileges = 'all except [delete]', subject_type = 'group', result = 'fails'
subject_name = 'group2'
request = <FixtureRequest for <Function 'test_user_sets_acl_for_parent_group_of_a_group_that_does_not_belong_to_space[1oz_1op_deployed-all except [delete]-group-group2-fails]'>>

>   ???

tests/gui/scenarios/test_oneprovider_acl_basic.py:49: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/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/gui/meta_steps/oneprovider/permissions.py:90: in grant_acl_privileges_in_op_gui
    wt_wait_for_modal_to_disappear(selenium, browser_id, tmp_memory)
tests/gui/steps/modal.py:131: in wt_wait_for_modal_to_disappear
    _wait_for_modal_to_disappear(driver, browser_id, tmp_memory)
tests/gui/steps/modal.py:120: in _wait_for_modal_to_disappear
    message='waiting for modal to disappear'
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <selenium.webdriver.support.wait.WebDriverWait (session="3606fe8d8d42ea577d94b8aaf3ff376d")>
method = <function <lambda> at 0x7f7a36d77aa0>
message = 'waiting for modal to disappear'

    def until_not(self, method, message=''):
        """Calls the method provided with the driver as an argument until the \
            return value is False."""
        end_time = time.time() + self._timeout
        while True:
            try:
                value = method(self._driver)
                if not value:
                    return value
            except self._ignored_exceptions:
                return True
            time.sleep(self._poll)
            if time.time() > end_time:
                break
>       raise TimeoutException(message)
E       TimeoutException: Message: waiting for modal to disappear

/usr/local/lib/python2.7/dist-packages/selenium/webdriver/support/wait.py:96: TimeoutException