<div>Thanks for the quick response Piñeiro.</div>
<div>I tried your 2 steps. Please find the results below.</div>
<div> </div>
<div>Step 1: </div>
<div>Nokia-N900-42-11:/home/opt# python<br><font color="#009900">Python 2.5.1 (r251:54863, May 23 2007, 17:32:51)<br>[GCC 3.4.4 (release) (CodeSourcery ARM 2005q3-2)] on linux2<br>Type &quot;help&quot;, &quot;copyright&quot;, &quot;credits&quot; or &quot;license&quot; for more information.<br>
</font>&gt;&gt;&gt; from dogtail import tree<br><font color="#009900">Creating logfile at /tmp/dogtail/logs/log_20100407-130759_debug ...<br>Detecting distribution: Debian (or derived distribution)<br>Warning: AT-SPI&#39;s desktop is visible but it has no children. Are you running any AT-SPI-aware applications?<br>
</font>&gt;&gt;&gt; tree.root.dump ()<br><font color="#009900">{root}</font></div>
<div>(I have opened &quot;contacts&quot; and then did tree.root.dump(). but stilll giving {root} only)</div>
<div> </div>
<div>Step 2:</div>
<div>&gt;&gt;&gt; import atspi</div>
<div>works fine; I tried the script you have given. script executed but with no prints</div>
<div>Nokia-N900-42-11:/home/opt# ./Piñeiro.py<br>Nokia-N900-42-11:/home/opt#</div>
<div> </div>
<div>-Praveen<br> </div>
<div class="gmail_quote">On Wed, Apr 7, 2010 at 3:14 PM, Piñeiro <span dir="ltr">&lt;<a href="mailto:apinheiro@igalia.com">apinheiro@igalia.com</a>&gt;</span> wrote:<br>
<blockquote style="BORDER-LEFT: #ccc 1px solid; MARGIN: 0px 0px 0px 0.8ex; PADDING-LEFT: 1ex" class="gmail_quote">From: praveen koduru &lt;<a href="mailto:prawin1111@gmail.com">prawin1111@gmail.com</a>&gt;<br>
<div class="im"><br>&gt;  Hi ,<br>&gt; I tried the steps suggested in the following link.<br>&gt; <a href="http://hildon-test-aut.garage.maemo.org/installation.html" target="_blank">http://hildon-test-aut.garage.maemo.org/installation.html</a><br>
<br></div>This is a really old guide. The target were the Nokia 770/810, not<br>sure if works fine on N900.<br>
<div class="im"><br>&gt; Steps I have tried:<br>&gt;<br>&gt; 1. Installed all .deb packages as pointed by the above link.<br>&gt;<br>&gt; 2. &quot;arm_for_testing on&quot;. executed the command &amp; rebooted<br>&gt;<br>
&gt; 3. Install Dogtail from the above link<br>&gt;<br>&gt;                cd dogtail; ./setup.py install<br>&gt; 4.  Then tested an example application &quot;sniff&quot;, which is present in the<br>&gt; dogtail.<br>&gt;                 - sniff not working<br>
&gt;                 - It throws error<br>&gt;                   ImportError: cannot import name checkForA11yInteractively<br><br></div>AFAIK, sniff have never worked.<br><br>Have you tried to use directly dogtail? Something like:<br>
<br> &gt;&gt;&gt; from dogtail import tree<br> &gt;&gt;&gt; tree.root.dump ()<br>
<div class="im"><br><br>&gt; I enabled Accessibility through &quot;gconftool-2 --type bool --set<br>&gt; /desktop/gnome/interface/accessibility true&quot;<br><br></div>This is the way to enable the accessibility in the desktop, and it is<br>
more recently that the package version number used in that link.<br><br>So, in this framework, this gconf variable is not used at all, it is<br>just based on GTK_MODULES and other custom things.<br>
<div class="im"><br>&gt; But still the same error.<br>&gt;<br>&gt; I jus tried the following<br>&gt;         1. python2.5<br>&gt;          2. &gt;&gt;&gt;import pyatspi<br>&gt;                    Traceback (most recent call last):<br>
&gt;                    File &quot;&lt;stdin&gt;&quot;, line 1, in &lt;module&gt;<br>&gt;                    ImportError: No module named pyatspi<br>&gt; I installed python-at-spi_0.6.1-1osso2_armel.deb package from the above<br>
&gt; link. but still it is showing no module pyatspi.<br><br></div>pyatspi is the last python accessibility bindings. This python-at-spi<br>package is about the old python bindings. Try something like:<br><br>$python2.5<br>
&gt;&gt;&gt; import atspi<br><br>And if it works, you could a script like this:<br><br>#!/usr/bin/env python<br># Return the name of the applications currently registered<br><br>import atspi<br>desk = atspi.registry.getDesktop(0)<br>
for i in xrange(desk.getChildCount()):<br>   app = desk.getChildAtIndex(i)<br>   print &quot;Index: %d&quot; % i<br>   try:<br>       print &quot;Application name: %s&quot; % app.getName()<br>       print &quot;Application elements: %d&quot; % app.getChildCount()<br>
   except Exception: print &quot;Error getting name or childcount&quot;<br>   print<br>
<div class="im"><br>&gt; All I need is to install dogtail and thus Hildon Test Automation framework<br>&gt; successfully and write some test scripts on N900.<br>&gt; any Help will be greatly appreciated.<br><br></div>As I said, have you tried to use directly dogtail instead of use<br>
Sniff?<br><br>BR<br><br>===<br>API (<a href="mailto:apinheiro@igalia.com">apinheiro@igalia.com</a>)<br></blockquote></div><br>