Project:
https://jenkins.ovirt.org/job/ovirt-system-tests_basic-suite-master_nightly/
Build:
https://jenkins.ovirt.org/job/ovirt-system-tests_basic-suite-master_night...
Build Number: 394
Build Status: Still Failing
Triggered By: Started by user Parth Dhanjal
-------------------------------------
Changes Since Last Success:
-------------------------------------
Changes for Build #393
[Galit Rosenthal] Rm he basic iscsi4.3 he node ng 4.3 from check_patch
Changes for Build #394
[Galit Rosenthal] Rm he basic iscsi4.3 he node ng 4.3 from check_patch
-----------------
Failed Tests:
-----------------
1 tests failed.
FAILED:
basic-suite-master.test-scenarios.100_basic_ui_sanity_pytest.test_virtual_machines[chrome]
Error Message:
Exception: Unexpected error notification present
Stack Trace:
ovirt_driver = <test_utils.navigation.driver.Driver object at 0x7f64d2d89b90>
setup_virtual_machines = None
save_screenshot = <function save at 0x7f64d4345d70>
save_page_source = <function save at 0x7f64d38307d0>
def test_virtual_machines(ovirt_driver, setup_virtual_machines,
save_screenshot, save_page_source):
try:
webadmin_menu = WebAdminLeftMenu(ovirt_driver)
vm_list_view = webadmin_menu.open_vm_list_view()
vms = vm_list_view.get_vms()
assert 'vm0' in vms
assert vm_list_view.is_new_button_enabled() is True
assert vm_list_view.is_edit_button_enabled() is False
assert vm_list_view.is_shutdown_button_enabled() is False
assert vm_list_view.is_export_button_enabled() is False
assert vm_list_view.is_migrate_button_enabled() is False
vm_list_view.select_vm('vm0')
assert vm_list_view.is_new_button_enabled() is True
assert vm_list_view.is_edit_button_enabled() is True
assert vm_list_view.is_shutdown_button_enabled() is True
assert vm_list_view.is_export_button_enabled() is False
assert vm_list_view.is_migrate_button_enabled() is True
vm_list_view.poweroff()
../basic-suite-master/test-scenarios/100_basic_ui_sanity_pytest.py:283:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
../basic-suite-master/test_utils/page_objects/VmListView.py:71: in poweroff
self.wait_and_close_success_notification_safely()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <test_utils.page_objects.VmListView.VmListView object at 0x7f64d21a4a10>
def wait_and_close_success_notification_safely(self):
isError = False
print('Wait for notification')
xpath = '//a[@class="notif_dismissButton"]'
self.ovirt_driver.wait_long_until('Notification is not displayed',
self.ovirt_driver.is_xpath_displayed, xpath)
self.ovirt_driver.wait_long_until('Notification is not enabled',
self.ovirt_driver.is_xpath_enabled, xpath)
isError = self.is_error_notification_visible()
if isError:
raise Exception("Unexpected error notification
present")
E Exception: Unexpected error notification present
../basic-suite-master/test_utils/page_objects/WithNotifications.py:32: Exception