Build: #4 failed

Job: Onezone spaces memberships privileges failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

    Final

nonspaceowner successfully creates share if he got manage shares privilege[1oz 1op deployed]: Test case result

The below summarizes the result of the test " nonspaceowner successfully creates share if he got manage shares privilege[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.
Description
nonspaceowner successfully creates share if he got manage shares privilege[1oz 1op deployed]
Test class
gui.scenarios.test_onezone_spaces_memberships_privileges
Method
test_nonspaceowner_successfully_creates_share_if_he_got_manage_shares_privilege[1oz_1op_deployed]
Duration
5 mins
Status
Failed (New Failure)

Error Log

RuntimeError: no "Share / Publish" found in Data row menu
fixturefunc = <function wt_click_option_in_data_row_menu_in_browser at 0x7f0ece2be0c0>
request = <FixtureRequest for <Function test_nonspaceowner_successfully_creates_share_if_he_got_manage_shares_privilege[1oz_1op_deployed]>>
kwargs = {'browser_id': 'browser_user1', 'option': 'Share / Publish', 'popups': <class 'tests.gui.utils.common.popups.Popups'>,...loyed]>>, 'space_owner_browser': <tests.conftest.ChromeWithAllLogs (session="023b4d064d4cd8666863077dd679840f")>}, ...}

    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)
tests/gui/steps/oneprovider/browser.py:338: in wt_click_option_in_data_row_menu_in_browser
    click_option_in_data_row_menu_in_browser(
/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/browser.py:331: in click_option_in_data_row_menu_in_browser
    menu.choose_option(option)
tests/gui/utils/common/popups/data_row_menu.py:28: in choose_option
    self.options[name].click()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <tests.gui.utils.core.web_objects.PageObjectsSequence object at 0x7f0ecdd2ed80>
sel = 'Share / Publish'

    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 "Share / Publish" found in Data row menu

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