GUI acceptance tests using environment deployed from packages.

Build: #1717 failed

Job: Onezone harvesters basic failed

user successfully sets privileges with set privileges privilege[1oz 1op elasticsearch]: Test case result

The below summarizes the result of the test " user successfully sets privileges with set privileges privilege[1oz 1op elasticsearch]" in build 1,717 of Onedata Products - gui acceptance pkg - Chrome onezone harvesters basic tests.
Description
user successfully sets privileges with set privileges privilege[1oz 1op elasticsearch]
Test class
gui.scenarios.test_onezone_harvesters_basic
Method
test_user_successfully_sets_privileges_with_set_privileges_privilege[1oz_1op_elasticsearch]
Jira Issue
Duration
4 mins
Status
Failed (Existing Failure)

Error Log

AssertionError: Harvester management should be granted but is not
request = <FixtureRequest for <Function 'test_user_successfully_sets_privileges_with_set_privileges_privilege[1oz_1op_elasticsearch]'>>

    @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:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
tests/gui/steps/onezone/members.py:593: in assert_privileges_in_members_subpage
    tree.assert_privileges(privileges)
tests/gui/utils/common/privilege_tree.py:117: in assert_privileges
    self._assert_privileges(privileges)
tests/gui/utils/common/privilege_tree.py:121: in _assert_privileges
    self._assert_privilege_group(privilege_group, privilege_name)
tests/gui/utils/common/privilege_tree.py:133: in _assert_privilege_group
    privilege_row.assert_privilege_granted(granted)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <tests.gui.utils.common.privilege_tree.PrivilegeGroup object at 0x7f1ad8b42278>
granted = True

    def assert_privilege_granted(self, granted):
        if granted == 'Partially':
            msg = f'{self.name} should be partially granted but is not'
            assert self.toggle.is_partial_checked(), msg
        elif granted:
            msg = f'{self.name} should be granted but is not'
>           assert self.toggle.is_checked(), msg
E           AssertionError: Harvester management should be granted but is not

tests/gui/utils/common/privilege_tree.py:82: AssertionError