GUI acceptance tests using environment deployed from packages.

Build: #2686 failed

Job: Multiprovider QoS failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

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 2,686 of Onedata Products - gui acceptance pkg - 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 (Existing Failure)

Error Log

RuntimeError: cannot click on DataDistributionItem in Data distribution popup
request = <FixtureRequest for <Function 'test_autocleaning_respects_qos_replicas_count_requirement_beside_autocleaning_quota[1oz_2op_deployed]'>>

    @pytest.mark.usefixtures(*function_args)
    def scenario_wrapper(request):
>       _execute_scenario(feature, scenario, request, encoding)

/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:227: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:189: in _execute_scenario
    _execute_step_function(request, scenario, step, step_func)
/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:130: in _execute_step_function
    step_func(**kwargs)
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
tests/gui/meta_steps/oneprovider/common.py:66: in replicate_file_to_provider
    replicate_item(selenium, browser_id, provider, hosts, popups)
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-937>:2: in replicate_item
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/oneprovider/transfers.py:161: in replicate_item
    popups(driver).data_distribution_popup.menu[menu_option]()
tests/gui/utils/common/popups/data_distribution_popup.py:17: in __call__
    self.click()
tests/gui/utils/core/base.py:81: in click
    click_on_web_elem(self.driver, self._click_area,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

driver = <selenium.webdriver.chrome.webdriver.WebDriver (session="319aa7496133cbf35d8e0429e497dd42")>
web_elem = <selenium.webdriver.remote.webelement.WebElement (session="319aa7496133cbf35d8e0429e497dd42", element="8ce4dbf6-9635-4b30-bc1a-d3edcee76917")>
err_msg = 'cannot click on DataDistributionItem in Data distribution popup'
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 DataDistributionItem in Data distribution popup

tests/gui/utils/generic.py:153: RuntimeError