Build: #4 failed

Job: Onezone spaces memberships privileges data failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

    Final

nonspaceowner successfully manages qos if he got qos management privileges[1oz 1op deployed]: Test case result

The below summarizes the result of the test " nonspaceowner successfully manages qos if he got qos management privileges[1oz 1op deployed]" in build 4 of Onedata Products - gui acceptance pkg - feature-VFS-12098-test-couchbase-upgrade-to-6.x-from-4.1 - Onezone spaces memberships privileges data.
Description
nonspaceowner successfully manages qos if he got qos management privileges[1oz 1op deployed]
Test class
gui.scenarios.test_onezone_spaces_memberships_privileges_data
Method
test_nonspaceowner_successfully_manages_qos_if_he_got_qos_management_privileges[1oz_1op_deployed]
Duration
3 mins
Status
Failed (New Failure)

Error Log

RuntimeError: no "Quality of Service" found in Menu popup with label
fixturefunc = <function add_qos_requirement_in_modal at 0x7f46b517bce0>
request = <FixtureRequest for <Function test_nonspaceowner_successfully_manages_qos_if_he_got_qos_management_privileges[1oz_1op_deployed]>>
kwargs = {'browser_id': 'browser_user1', 'expression': 'hello=WORLD', 'item_name': 'dir1', 'modals': <class 'tests.gui.utils.common.modals.Modals'>, ...}

    def call_fixture_func(
        fixturefunc: "_FixtureFunc[FixtureValue]", request: FixtureRequest, kwargs
    ) -> FixtureValue:
        if is_generator(fixturefunc):
            fixturefunc = cast(
                Callable[..., Generator[FixtureValue, None, None]], fixturefunc
            )
            generator = fixturefunc(**kwargs)
            try:
                fixture_result = next(generator)
            except StopIteration:
                raise ValueError(f"{request.fixturename} did not yield a value") from None
            finalizer = functools.partial(_teardown_yield_fixture, fixturefunc, generator)
            request.addfinalizer(finalizer)
        else:
            fixturefunc = cast(Callable[..., FixtureValue], fixturefunc)
>           fixture_result = fixturefunc(**kwargs)

/usr/local/lib/python3.12/dist-packages/_pytest/fixtures.py:913: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
/usr/local/lib/python3.12/dist-packages/decorator.py:232: in fun
    return caller(func, *(extras + args), **kw)
tests/utils/utils.py:93: in wrapper
    return fun(*args, **kwargs)
tests/gui/meta_steps/oneprovider/qos.py:65: in add_qos_requirement_in_modal
    _add_qos_requirement_in_modal(selenium, browser_id, modals, item_name,
tests/gui/meta_steps/oneprovider/qos.py:39: in _add_qos_requirement_in_modal
    choose_option_for_file_from_selection_menu(browser_id, selenium, qos_option,
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
/usr/local/lib/python3.12/dist-packages/decorator.py:232: in fun
    return caller(func, *(extras + args), **kw)
tests/utils/utils.py:93: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/oneprovider/data_tab.py:551: in choose_option_for_file_from_selection_menu
    menu.choose_option(option)
tests/gui/utils/common/popups/menu_popup.py:29: in choose_option
    self.menu[name].click()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <tests.gui.utils.core.web_objects.PageObjectsSequence object at 0x7f46b24cf0b0>
sel = 'Quality of 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 "Quality of Service" found in Menu popup with label

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