Skip to content

Commit 4e2bec5

Browse files
committed
tests: ui: make creatnet test start less flakey
Signed-off-by: Cole Robinson <[email protected]>
1 parent acf3ced commit 4e2bec5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/uitests/lib/app.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,9 @@ def manager_open_host(self, tab, conn_label="test testdriver.xml"):
215215
self.root.find_fuzzy("Edit", "menu").click()
216216
self.root.find_fuzzy("Connection Details", "menu item").click()
217217
win = self.find_window("%s - Connection Details" % conn_label)
218-
win.find_fuzzy(tab, "page tab").click()
218+
tab = win.find_fuzzy(tab, "page tab")
219+
tab.point()
220+
tab.click()
219221
return win
220222

221223
def manager_test_conn_window_cleanup(self, conn_label, childwin):

0 commit comments

Comments
 (0)