GUI acceptance tests using environment deployed from packages.
Build: #2949 failed
Job: Onezone basic failed
user sees that group added to harvester has default privileges[1oz 1op elasticsearch]: Test case result
The below summarizes the result of the test " user sees that group added to harvester has default privileges[1oz 1op elasticsearch]" in build 2,949 of Onedata Products - gui acceptance pkg - Onezone basic.
- Description
- user sees that group added to harvester has default privileges[1oz 1op elasticsearch]
- Test class
- gui.scenarios.test_onezone_basic
- Method
- test_user_sees_that_group_added_to_harvester_has_default_privileges[1oz_1op_elasticsearch]
- Duration
- 2 mins
- Status
- Failed (New Failure)
Error Log
RuntimeError: did not manage to expand main panel fixturefunc = <function remove_harvester at 0x7fe932a042c0> request = <FixtureRequest for <Function test_user_sees_that_group_added_to_harvester_has_default_privileges[1oz_1op_elasticsearch]>> kwargs = {'browser_id': 'browser1', 'harvester_name': 'harvester3', 'modals': <class 'tests.gui.utils.common.modals.Modals'>, 'oz_page': <class 'tests.gui.utils.onezone.OZLoggedIn'>, ...} 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/onezone/harvesters.py:105: in remove_harvester click_on_option_in_the_sidebar(selenium, browser_id, where, oz_page) tests/utils/bdd_utils.py:78: in wrapper return fun(*ba.args, **ba.kwargs) tests/gui/steps/onezone/spaces.py:170: in click_on_option_in_the_sidebar _click_on_option_in_the_sidebar(selenium, browser_id, option, oz_page, force=True) /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/onezone/spaces.py:180: in _click_on_option_in_the_sidebar page = oz_page(driver).get_page_and_click(name) tests/gui/utils/onezone/__init__.py:69: in get_page_and_click return get_page(self, item) tests/gui/utils/onezone/__init__.py:96: in get_page wait_for_panel_to_expand(oz_page) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ oz_page = <tests.gui.utils.onezone.OZLoggedIn object at 0x7fe93356c0b0> def wait_for_panel_to_expand(oz_page): for _ in range(20): if oz_page.get_panels()[0].text == "DATA": return time.sleep(0.1) > raise RuntimeError("did not manage to expand main panel") E RuntimeError: did not manage to expand main panel tests/gui/utils/onezone/__init__.py:110: RuntimeError