Hi, Nagappan,<br><br>I followed the ldtp-tutorial and created a ldtprunner XML file named &#39;run.xml&#39;. The XML file loaded a script named &#39;test.py&#39; successfully. <br><br>In &#39;test.py&#39;, I loaded a ldtp Data XML file as follows. But I found that the &#39;data.xml&#39; must reside in the same directory as &#39;run.xml&#39;.<br>


<span style="font-family: courier new,monospace;"><br>dataXml = ldtputils.LdtpDataFileParser (&#39;data.xml&#39;)</span><br><br>It causes some difficulites in arranging the ldtprunner xml files. We may have mutilple runner xml files comming from different directories to load the same &#39;test.py&#39;.  It forbid we write a hardcoded path for &#39;data.xml&#39;. <br>

1) One solution is to use a flat directory structure. But it is too unnatural.<br>2) The other is to use os.getcwd() and os.chcwd() to change the working directory. But it seems I can&#39;t use &#39;__file__&#39; macro to get the current executing file&#39;s path information resolved.<br>

<br>Is there a better solution or hack available?<br><br>(It seems ldtp 1.7.1&#39;s ldtprunner implementation use &#39;execfile&#39; to run the loaded script. I am not sure if there is another other standard method to solve the above issue)<br>

<br>Thanks<br>Scott Wang<br><br><br>