<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 "help", "copyright", "credits" or "license" for more information.<br>
</font>>>> 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's desktop is visible but it has no children. Are you running any AT-SPI-aware applications?<br>
</font>>>> tree.root.dump ()<br><font color="#009900">{root}</font></div>
<div>(I have opened "contacts" and then did tree.root.dump(). but stilll giving {root} only)</div>
<div> </div>
<div>Step 2:</div>
<div>>>> 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"><<a href="mailto:apinheiro@igalia.com">apinheiro@igalia.com</a>></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 <<a href="mailto:prawin1111@gmail.com">prawin1111@gmail.com</a>><br>
<div class="im"><br>> Hi ,<br>> I tried the steps suggested in the following link.<br>> <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>> Steps I have tried:<br>><br>> 1. Installed all .deb packages as pointed by the above link.<br>><br>> 2. "arm_for_testing on". executed the command & rebooted<br>><br>
> 3. Install Dogtail from the above link<br>><br>> cd dogtail; ./setup.py install<br>> 4. Then tested an example application "sniff", which is present in the<br>> dogtail.<br>> - sniff not working<br>
> - It throws error<br>> 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> >>> from dogtail import tree<br> >>> tree.root.dump ()<br>
<div class="im"><br><br>> I enabled Accessibility through "gconftool-2 --type bool --set<br>> /desktop/gnome/interface/accessibility true"<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>> But still the same error.<br>><br>> I jus tried the following<br>> 1. python2.5<br>> 2. >>>import pyatspi<br>> Traceback (most recent call last):<br>
> File "<stdin>", line 1, in <module><br>> ImportError: No module named pyatspi<br>> I installed python-at-spi_0.6.1-1osso2_armel.deb package from the above<br>
> 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>
>>> 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 "Index: %d" % i<br> try:<br> print "Application name: %s" % app.getName()<br> print "Application elements: %d" % app.getChildCount()<br>
except Exception: print "Error getting name or childcount"<br> print<br>
<div class="im"><br>> All I need is to install dogtail and thus Hildon Test Automation framework<br>> successfully and write some test scripts on N900.<br>> 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>