GUI acceptance tests using environment deployed from packages.
Build: #2472 failed
Job: Multiprovider QoS storage failed
user sees matching storages count changing while editing nested expression in qos visual editor and submits the expression successfully[1oz 2op deployed]: Test case result
The below summarizes the result of the test " user sees matching storages count changing while editing nested expression in qos visual editor and submits the expression successfully[1oz 2op deployed]" in build 2,472 of Onedata Products - gui acceptance pkg - Chrome multiprovider QoS storage.
- Description
- user sees matching storages count changing while editing nested expression in qos visual editor and submits the expression successfully[1oz 2op deployed]
- Test class
- gui.scenarios.test_multiprovider_qos_storage
- Method
- test_user_sees_matching_storages_count_changing_while_editing_nested_expression_in_qos_visual_editor_and_submits_the_expression_successfully[1oz_2op_deployed]
- Duration
- 2 mins
- Status
- Failed (New Failure)
Error Log
RuntimeError: cannot click on button btn in ExpressionBuilderPopup in popups request = <FixtureRequest for <Function 'test_user_sees_matching_storages_count_changing_while_editing_nested_expression_in_qos_visual_editor_and_submits_the_expression_successfully[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/steps/oneprovider/qos.py:272: in click_add_in_add_cond_popup popup.add_button() 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 = <selenium.webdriver.chrome.webdriver.WebDriver (session="73f39cdb7aa498d66d965b83f592f864")> web_elem = <selenium.webdriver.remote.webelement.WebElement (session="73f39cdb7aa498d66d965b83f592f864", element="e4b47c8c-40ae-42db-ae7c-83e11ef2f8ff")> err_msg = 'cannot click on button btn in ExpressionBuilderPopup in popups' 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 ExpressionBuilderPopup in popups tests/gui/utils/generic.py:138: RuntimeError