GUI acceptance tests using environment deployed from packages.

Build: #2855 failed

Job: Onezone tokens failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

    Final

user successfully creates access token with all caveats[1oz 2op elasticsearch]: Test case result

The below summarizes the result of the test " user successfully creates access token with all caveats[1oz 2op elasticsearch]" in build 2,855 of Onedata Products - gui acceptance pkg - Onezone tokens.
Description
user successfully creates access token with all caveats[1oz 2op elasticsearch]
Test class
gui.scenarios.test_onezone_tokens
Method
test_user_successfully_creates_access_token_with_all_caveats[1oz_2op_elasticsearch]
Jira Issue
Duration
4 mins
Status
Failed (New Failure)

Error Log

RuntimeError: no "Service" found in Consumer caveat popup
request = <FixtureRequest for <Function 'test_user_successfully_creates_access_token_with_all_caveats[1oz_2op_elasticsearch]'>>

    @pytest.mark.usefixtures(*function_args)
    def scenario_wrapper(request):
>       _execute_scenario(feature, scenario, request, encoding)

/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:227: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:189: in _execute_scenario
    _execute_step_function(request, scenario, step, step_func)
/usr/local/lib/python3.8/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)
<decorator-gen-1129>:2: in create_token_with_config
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
tests/gui/meta_steps/onezone/tokens.py:229: in create_token_with_config
    _create_token_with_config(selenium, browser_id, config, oz_page,
tests/gui/meta_steps/onezone/tokens.py:267: in _create_token_with_config
    _set_tokens_caveats(selenium, browser_id, oz_page, caveats, popups,
tests/gui/meta_steps/onezone/tokens.py:310: in _set_tokens_caveats
    caveat.set_service_caveats(selenium, browser_id, service_caveats,
tests/gui/utils/onezone/token_caveats.py:203: in set_service_caveats
    self.set_service_in_service_caveat(selenium, browser_id,
tests/gui/utils/onezone/token_caveats.py:216: in set_service_in_service_caveat
    popup.consumer_types[consumer_type]()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

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

    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 "Service" found in Consumer caveat popup

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