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: 1276
Build Status: Failure
Triggered By: Started by timer
-------------------------------------
Changes Since Last Success:
-------------------------------------
Changes for Build #1276
[Lucia Jelinkova] UI: Change the navigation in the left menu
-----------------
Failed Tests:
-----------------
1 tests failed.
FAILED:
basic-suite-master.test-scenarios.test_100_basic_ui_sanity.test_userportal[firefox]
Error Message:
selenium.common.exceptions.TimeoutException: Message: Wait until VM Portal is displayed
failed
Stack Trace:
ovirt_driver = <ost_utils.selenium.navigation.driver.Driver object at
0x7f745aad60f0>
nonadmin_username = 'non_admin_user', nonadmin_password = '123456'
user_login = <function user_login.<locals>.login at 0x7f745aafebf8>
engine_webadmin_url = 'https://engine/ovirt-engine'
def test_userportal(ovirt_driver, nonadmin_username, nonadmin_password,
user_login, engine_webadmin_url):
welcome_screen = WelcomeScreen(ovirt_driver)
welcome_screen.wait_for_displayed()
welcome_screen.open_user_portal()
user_login(nonadmin_username, nonadmin_password)
vm_portal = VmPortal(ovirt_driver)
vm_portal.wait_for_displayed()
basic-suite-master/test-scenarios/test_100_basic_ui_sanity.py:524:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
ost_utils/ost_utils/selenium/page_objects/Displayable.py:14: in wait_for_displayed
self.ovirt_driver.wait_until('Wait until ' + self.get_displayable_name() +
' is displayed failed', self.is_displayed)
ost_utils/ost_utils/selenium/navigation/driver.py:276: in wait_until
self._wait_until(message, assertions.SHORT_TIMEOUT, condition_method, *args)
ost_utils/ost_utils/selenium/navigation/driver.py:282: in _wait_until
WebDriverWait(self.driver, timeout).until(ConditionClass(condition_method, *args),
message)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <selenium.webdriver.support.wait.WebDriverWait
(session="16ad857f-4407-4e03-8c00-1f6cc4f224af")>
method = <ost_utils.selenium.navigation.driver.ConditionClass object at
0x7f745aa2f080>
message = 'Wait until VM Portal is displayed failed'
def until(self, method, message=''):
"""Calls the method provided with the driver as an argument until
the \
return value is not False."""
screen = None
stacktrace = None
end_time = time.time() + self._timeout
while True:
try:
value = method(self._driver)
if value:
return value
except self._ignored_exceptions as exc:
screen = getattr(exc, 'screen', None)
stacktrace = getattr(exc, 'stacktrace', None)
time.sleep(self._poll)
if time.time() > end_time:
break
raise TimeoutException(message, screen, stacktrace)
E
selenium.common.exceptions.TimeoutException: Message: Wait until VM Portal is displayed
failed
.tox/deps/lib/python3.6/site-packages/selenium/webdriver/support/wait.py:80:
TimeoutException