summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/uitests/test_clonevm.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/uitests/test_clonevm.py b/tests/uitests/test_clonevm.py
index 9b28e96e..82f281e1 100644
--- a/tests/uitests/test_clonevm.py
+++ b/tests/uitests/test_clonevm.py
@@ -38,7 +38,12 @@ class CloneVM(lib.testcase.UITestCase):
def _open_window(self, vmname):
# Launch wizard via right click menu
- c = self.app.root.find_fuzzy(vmname, "table cell")
+ manager = self.app.topwin
+ manager.click_title()
+ lib.utils.check(lambda: manager.active)
+ c = manager.find_fuzzy(vmname, "table cell")
+ self.app.sleep(.3)
+ c.click()
c.click(button=3)
item = self.app.root.find("Clone...", "menu item")
item.point()