GUI acceptance tests using environment deployed from packages.
Build: #565 failed
Job: Multiprovider basic failed
user uses autocleaning[1oz 2op deployed]: Test case result
The below summarizes the result of the test " user uses autocleaning[1oz 2op deployed]" in build 565 of Onedata Products - gui acceptance pkg - Chrome multiprovider basic tests.
- Description
- user uses autocleaning[1oz 2op deployed]
- Test class
- gui.scenarios.test_multiprovider_basic
- Method
- test_user_uses_autocleaning[1oz_2op_deployed]
- Duration
- 4 mins
- Status
- Failed (New Failure)
Error Log
RuntimeError: cannot click on start_cleaning_now btn in AutoCleaning in Space in SpacesContentPage in content in dev-oneprovider-krakow Oneprovider Panel 19.02.0-beta1 request = <FixtureRequest for <Function 'test_user_uses_autocleaning[1oz_2op_deployed]'>> from tests.gui.steps.onezone.spaces import * > from tests.gui.steps.onezone.multibrowser_spaces import * tests/gui/scenarios/test_multiprovider_basic.py:41: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /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) <decorator-gen-188>:2: in click_start_cleaning_now ??? tests/utils/utils.py:71: in wrapper return fun(*args, **kwargs) tests/gui/steps/onepanel/spaces.py:495: 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:82: in click lambda: 'cannot click on {}'.format(self)) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ driver = <selenium.webdriver.chrome.webdriver.WebDriver (session="31ae943c49d806b5fd567d7ac6e64242")> web_elem = <selenium.webdriver.remote.webelement.WebElement (session="31ae943c49d806b5fd567d7ac6e64242", element="0.6161162277399637-71")> err_msg = 'cannot click on start_cleaning_now btn in AutoCleaning in Space in SpacesContentPage in content in dev-oneprovider-krakow\nOneprovider Panel 19.02.0-beta1' 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 start_cleaning_now btn in AutoCleaning in Space in SpacesContentPage in content in dev-oneprovider-krakow E Oneprovider Panel 19.02.0-beta1 tests/gui/utils/generic.py:126: RuntimeError