GUI acceptance tests using environment deployed from packages.
Build: #2630 failed
Job: Oneprovider datasets privileges failed
user successfully detaches dataset if he has manage datasets privilege[1oz 1op deployed]: Test case result
The below summarizes the result of the test " user successfully detaches dataset if he has manage datasets privilege[1oz 1op deployed]" in build 2,630 of Onedata Products - gui acceptance pkg - Oneprovider datasets privileges.
- Description
- user successfully detaches dataset if he has manage datasets privilege[1oz 1op deployed]
- Test class
- gui.scenarios.test_oneprovider_datasets_privileges
- Method
- test_user_successfully_detaches_dataset_if_he_has_manage_datasets_privilege[1oz_1op_deployed]
- Jira Issue
-
- Duration
- 2 mins
- Status
- Failed (New Failure)
Error Log
RuntimeError: cannot click on Options in Data row menu request = <FixtureRequest for <Function 'test_user_successfully_detaches_dataset_if_he_has_manage_datasets_privilege[1oz_1op_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) <decorator-gen-641>:2: in click_option_in_data_row_menu_in_browser ??? tests/utils/utils.py:95: in wrapper return fun(*args, **kwargs) tests/gui/steps/oneprovider/browser.py:211: in click_option_in_data_row_menu_in_browser menu.choose_option(option) tests/gui/utils/common/popups/data_row_menu.py:28: in choose_option self.options[name].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="62ff851bafd2cfefb3537cf8c8895b57")> web_elem = <selenium.webdriver.remote.webelement.WebElement (session="62ff851bafd2cfefb3537cf8c8895b57", element="f67a6f18-b10f-4033-8e58-0c5f2bd6d8e5")> err_msg = 'cannot click on Options in Data row menu', 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 Options in Data row menu tests/gui/utils/generic.py:153: RuntimeError