From 4e2bec5b1410649232165fa33091a6ed9b9b48d9 Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Tue, 23 Jan 2024 11:18:49 -0500 Subject: [PATCH] tests: ui: make creatnet test start less flakey Signed-off-by: Cole Robinson --- tests/uitests/lib/app.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/uitests/lib/app.py b/tests/uitests/lib/app.py index 83628a7f2..672b5ced0 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):