Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/sugar/tree.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/sugar/tree.py')
-rw-r--r--tests/sugar/tree.py18
1 files changed, 16 insertions, 2 deletions
diff --git a/tests/sugar/tree.py b/tests/sugar/tree.py
index 1a58277..6607371 100644
--- a/tests/sugar/tree.py
+++ b/tests/sugar/tree.py
@@ -7,8 +7,22 @@ from gi.repository import GLib
Atspi.set_timeout(-1, -1)
-def get_root():
- return Node(Atspi.get_desktop(0))
+def get_root(wait=True):
+ desktop = Node(Atspi.get_desktop(0))
+
+ if not wait:
+ return desktop
+
+ n_tries = 0
+ while n_tries < 50:
+ if desktop.get_children():
+ return desktop
+
+ n_tries = n_tries + 1
+ logging.info("Waiting for a valid accessibility tree %d" % n_tries)
+ time.sleep(1)
+
+ return None
def _retry_find(func):