Build: #6 failed
Job: Multiprovider QoS failed
autocleaning respects qos replicas count requirement beside autocleaning quota[1oz 2op deployed]: Test case result
The below summarizes the result of the test " autocleaning respects qos replicas count requirement beside autocleaning quota[1oz 2op deployed]" in build 6 of Onedata Products - gui acceptance pkg - feature-VFS-12098-test-couchbase-upgrade-to-6.x-from-4.1 - Multiprovider QoS.
- Description
- autocleaning respects qos replicas count requirement beside autocleaning quota[1oz 2op deployed]
- Test class
- gui.scenarios.test_multiprovider_qos
- Method
- test_autocleaning_respects_qos_replicas_count_requirement_beside_autocleaning_quota[1oz_2op_deployed]
- Duration
- 8 mins
- Status
- Failed (Existing Failure)
Error Log
RuntimeError: cannot click on button btn in AutoCleaning in Space in SpacesContentPage in content in Oneprovider Panel 21.02.7 fixturefunc = <function click_start_cleaning_now at 0x7f2cb0ecbc40> request = <FixtureRequest for <Function test_autocleaning_respects_qos_replicas_count_requirement_beside_autocleaning_quota[1oz_2op_deployed]>> kwargs = {'browser_id': 'browser_emergency', 'onepanel': <class 'tests.gui.utils.onepanel.Onepanel'>, 'selenium': {'browser_eme...for <Function test_autocleaning_respects_qos_replicas_count_requirement_beside_autocleaning_quota[1oz_2op_deployed]>>}} 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/steps/onepanel/spaces.py:640: in click_start_cleaning_now onepanel(driver).content.spaces.space.auto_cleaning.start_cleaning_now() tests/gui/utils/core/web_objects.py:20: in __call__ self.click() tests/gui/utils/core/base.py:79: in click click_on_web_elem( _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ driver = <tests.conftest.ChromeWithAllLogs (session="bc446534a3372db2e2fc56cbefd78889")> web_elem = <selenium.webdriver.remote.webelement.WebElement (session="bc446534a3372db2e2fc56cbefd78889", element="CBB7FEF8624D953E886E7AA823BEBE27_element_318")> err_msg = 'cannot click on button btn in AutoCleaning in Space in SpacesContentPage in content in Oneprovider Panel 21.02.7' delay = True def click_on_web_elem(driver, web_elem, err_msg, delay=True): disabled = "disabled" in web_elem.get_attribute("class") # scroll to make the element visible if not web_elem.is_displayed(): _ = web_elem.location_once_scrolled_into_view if web_elem.is_enabled() and web_elem.is_displayed() and not disabled: # TODO VFS-7484 make optional sleep and localize only those tests # that need it or find better alternative # currently checking if elem is enabled not always work # (probably after striping disabled from web elem # elem is not immediately clickable) if delay: sleep(delay if isinstance(delay, float) else 0.25) action = ActionChains(driver) action.move_to_element(web_elem).click_and_hold(web_elem).release(web_elem) action.perform() else: with suppress(TypeError): err_msg = err_msg() > raise RuntimeError(err_msg) E RuntimeError: cannot click on button btn in AutoCleaning in Space in SpacesContentPage in content in Oneprovider Panel 21.02.7 tests/gui/utils/generic.py:184: RuntimeError