Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/sugar/tree.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/sugar/tree.py b/tests/sugar/tree.py
index 9a81f11..6607371 100644
--- a/tests/sugar/tree.py
+++ b/tests/sugar/tree.py
@@ -8,15 +8,15 @@ Atspi.set_timeout(-1, -1)
def get_root(wait=True):
+ desktop = Node(Atspi.get_desktop(0))
+
+ if not wait:
+ return desktop
+
n_tries = 0
- while n_tries < 5:
- root_accessible = Atspi.get_desktop(0)
- if root_accessible:
- desktop = Node(root_accessible)
- if desktop.get_children():
- return desktop
- elif not wait:
- return None
+ 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)