Acceptance tests using different clients concurrently. Environment deployed from packages.
Build: #329 failed
Job: Onepanel failed
user disables files update[1oz 1op 1oc-RESt-web GUi-RESt]: Test case result
The below summarizes the result of the test " user disables files update[1oz 1op 1oc-RESt-web GUi-RESt]" in build 329 of Onedata Products - mixed acceptance pkg - Chrome onepanel tests.
- Description
- user disables files update[1oz 1op 1oc-RESt-web GUi-RESt]
- Test class
- mixed.scenarios.test_onepanel_basic
- Method
- test_user_disables_files_update[1oz_1op_1oc-REST-web GUI-REST]
- Duration
- 29 secs
- Status
- Failed (Existing Failure)
Error Log
RuntimeError: cannot click on toolbar btn in SpaceRecord in SpacesContentPage in content in Provider Panel client1 = 'REST', client2 = 'web GUI', client3 = 'REST' request = <FixtureRequest for <Function 'test_user_disables_files_update[1oz_1op_1oc-REST-web GUI-REST]'>> > ??? tests/mixed/scenarios/test_onepanel_basic.py:61: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python2.7/dist-packages/pytest_bdd/scenario.py:195: in _execute_scenario _execute_step_function(request, scenario, step, step_func) /usr/local/lib/python2.7/dist-packages/pytest_bdd/scenario.py:137: in _execute_step_function step_func(**kwargs) tests/mixed/steps/onepanel_basic.py:502: in configure_sync_parameters_for_space_in_op_panel config, sync_type) tests/gui/meta_steps/onepanel/spaces.py:90: in configure_sync_parameters_for_space_in_op_panel_gui onepanel) <decorator-gen-150>:2: in wt_expands_toolbar_icon_for_space_in_onepanel ??? tests/utils/utils.py:71: in wrapper return fun(*args, **kwargs) tests/gui/steps/onepanel/spaces.py:292: in wt_expands_toolbar_icon_for_space_in_onepanel record.toolbar.click() tests/gui/utils/core/base.py:82: in click lambda: 'cannot click on {}'.format(self)) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ driver = <selenium.webdriver.chrome.webdriver.WebDriver (session="bf9b67fe0ecd1a6cebac09a9c4b6c69c")> web_elem = <selenium.webdriver.remote.webelement.WebElement (session="bf9b67fe0ecd1a6cebac09a9c4b6c69c", element="0.1349093678606068-65")> err_msg = 'cannot click on toolbar btn in SpaceRecord in SpacesContentPage in content in Provider Panel' 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 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 toolbar btn in SpaceRecord in SpacesContentPage in content in Provider Panel tests/gui/utils/generic.py:125: RuntimeError