Build: #4 failed

Job: Multiprovider QoS failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

    Final

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 4 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
4 mins
Status
Failed (New 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 0x7fa8dab218a0>
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:491: in click_start_cleaning_now
    onepanel(driver).content.spaces.space.auto_cleaning.start_cleaning_now()
tests/gui/utils/core/web_objects.py:21: in __call__
    self.click()
tests/gui/utils/core/base.py:81: in click
    click_on_web_elem(self.driver, self._click_area,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

driver = <tests.conftest.ChromeWithAllLogs (session="6624844efd2df87650a54ab3e5dea4cd")>
web_elem = <selenium.webdriver.remote.webelement.WebElement (session="6624844efd2df87650a54ab3e5dea4cd", element="E4A7DCA973D867529A6E225A1ED270D4_element_317")>
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:174: RuntimeError