GUI acceptance tests using environment deployed from packages.

Build: #1105 failed

Job: Onezone tokens failed

group succeeds to join space using invite token with consumer caveat set for it[1oz 2op elasticsearch]: Test case result

The below summarizes the result of the test " group succeeds to join space using invite token with consumer caveat set for it[1oz 2op elasticsearch]" in build 1,105 of Onedata Products - gui acceptance pkg - Chrome onezone tokens tests.
Description
group succeeds to join space using invite token with consumer caveat set for it[1oz 2op elasticsearch]
Test class
gui.scenarios.test_onezone_tokens
Method
test_group_succeeds_to_join_space_using_invite_token_with_consumer_caveat_set_for_it[1oz_2op_elasticsearch]
Jira Issue
Duration
2 mins
Status
Failed (New Failure)

Error Log

RuntimeError: no "Group" found in Consumer caveat popup
request = <FixtureRequest for <Function 'test_group_succeeds_to_join_space_using_invite_token_with_consumer_caveat_set_for_it[1oz_2op_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:76: in wrapper
    return fun(*ba.args, **ba.kwargs)
tests/gui/meta_steps/onezone/tokens.py:483: in create_and_check_token
    users, groups, hosts, tmp_memory)
tests/gui/meta_steps/onezone/tokens.py:237: in _create_token_with_config
    users, groups, hosts, tmp_memory)
tests/gui/meta_steps/onezone/tokens.py:274: in _set_tokens_caveats
    consumer_caveats, users, groups, hosts)
tests/gui/utils/onezone/token_caveats.py:183: in set_consumer_caveats
    consumer_type, method, value)
tests/gui/utils/onezone/token_caveats.py:192: in set_consumer_in_consumer_caveat
    popup.consumer_types[consumer_type.capitalize()]()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <tests.gui.utils.core.web_objects.PageObjectsSequence object at 0x7f7cc8aa5da0>
sel = 'Group'

    def __getitem__(self, sel):
        if isinstance(sel, int):
            item = self._getitem_by_idx(sel)
            if item:
                return self.cls(self.driver, item, self.parent)
            else:
                raise RuntimeError('Index out of bound. Requested item at '
                                   '{idx} while limit is {limit} in '
                                   '{parent}'.format(idx=sel, limit=len(self),
                                                     parent=self.parent))
        elif isinstance(sel, str):
            item = self._getitem_by_id(sel)
            if item:
                return item
            else:
                raise RuntimeError('no "{id}" found in '
                                   '{parent}'.format(id=sel,
>                                                    parent=self.parent))
E               RuntimeError: no "Group" found in Consumer caveat popup

tests/gui/utils/core/web_objects.py:85: RuntimeError