23 lines
903 B
Diff
23 lines
903 B
Diff
Subject: tests: ui: make creatnet test start less flakey
|
|
From: Cole Robinson crobinso@redhat.com Tue Jan 23 11:18:49 2024 -0500
|
|
Date: Tue Jan 23 13:28:07 2024 -0500:
|
|
Git: 4e2bec5b1410649232165fa33091a6ed9b9b48d9
|
|
|
|
Signed-off-by: Cole Robinson <crobinso@redhat.com>
|
|
|
|
diff --git a/tests/uitests/lib/app.py b/tests/uitests/lib/app.py
|
|
index 83628a7f..672b5ced 100644
|
|
--- a/tests/uitests/lib/app.py
|
|
+++ b/tests/uitests/lib/app.py
|
|
@@ -215,7 +215,9 @@ class VMMDogtailApp(object):
|
|
self.root.find_fuzzy("Edit", "menu").click()
|
|
self.root.find_fuzzy("Connection Details", "menu item").click()
|
|
win = self.find_window("%s - Connection Details" % conn_label)
|
|
- win.find_fuzzy(tab, "page tab").click()
|
|
+ tab = win.find_fuzzy(tab, "page tab")
|
|
+ tab.point()
|
|
+ tab.click()
|
|
return win
|
|
|
|
def manager_test_conn_window_cleanup(self, conn_label, childwin):
|