GUI acceptance tests using environment deployed from packages.
Build: #1143 failed
Job: Onepanel basic failed
user sees that synchronization autoupdate still works after changing mount point for storage[1oz 1op deployed]: Test case result
The below summarizes the result of the test " user sees that synchronization autoupdate still works after changing mount point for storage[1oz 1op deployed]" in build 1,143 of Onedata Products - gui acceptance pkg - Chrome onepanel basic tests.
- Description
- user sees that synchronization autoupdate still works after changing mount point for storage[1oz 1op deployed]
- Test class
- gui.scenarios.test_onepanel_basic
- Method
- test_user_sees_that_synchronization_autoupdate_still_works_after_changing_mount_point_for_storage[1oz_1op_deployed]
- Jira Issue
-
- Duration
- 3 mins
- Status
- Failed (Existing Failure)
Error Log
AssertionError: no info notify with ".*[Ss]torage.*added.*" msg found request = <FixtureRequest for <Function 'test_user_sees_that_synchronization_autoupdate_still_works_after_changing_mount_point_for_storage[1oz_1op_deployed]'>> @pytest.mark.usefixtures(*function_args) def scenario_wrapper(request): > _execute_scenario(feature, scenario, request, encoding) /usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:227: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:189: in _execute_scenario _execute_step_function(request, scenario, step, step_func) /usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:130: in _execute_step_function step_func(**kwargs) tests/gui/meta_steps/onepanel/storages.py:80: in add_storage_in_op_panel_using_gui name) tests/gui/meta_steps/onepanel/storages.py:130: in _add_storage_in_op_panel_using_gui notify_visible_with_text(selenium, browser_id, notify_type, text_regexp) <decorator-gen-17>:2: in notify_visible_with_text ??? tests/utils/utils.py:80: in wrapper return fun(*args, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ selenium = {'browser_emergency': <selenium.webdriver.chrome.webdriver.WebDriver (session="f8646a6ea228ca097d11535716467ed3")>, 'browser_unified': <selenium.webdriver.chrome.webdriver.WebDriver (session="d3d9b02d02dcb795e370bac355e97f93")>} browser_id = 'browser_unified', notify_type = 'info' text_regexp = '.*[Ss]torage.*added.*' @wt(parsers.parse('user of {browser_id} sees an {notify_type} notify ' 'with text matching to: {text_regexp}')) @repeat_failed(timeout=2 * WAIT_BACKEND) def notify_visible_with_text(selenium, browser_id, notify_type, text_regexp): driver = selenium[browser_id] css_sel = '.ember-notify-show[class*={}] .message'.format(notify_type) regexp = re.compile(text_regexp) with suppress(NoSuchElementException, StaleElementReferenceException): assert any(regexp.match(notify.text) for notify in driver.find_elements_by_css_selector(css_sel)), \ 'no {} notify with "{}" msg found'.format(notify_type, > text_regexp) E AssertionError: no info notify with ".*[Ss]torage.*added.*" msg found tests/gui/steps/common/notifies.py:34: AssertionError