0

ant taskを使用してseleniumスクリプトを実行しています。コマンドプロンプトを使用して正常に動作していますが、ant taskからは動作していません。これを解決するにはどうすればよいですか?

 <testcase classname="junit.framework.TestSuite"    name="com.openbravo.test.integration.erp.testsuites.regression.MRC0000_Logging" time="0.0010">
  <error message="config/OpenbravoERPTest.properties (No such file or directory)"   type="java.io.FileNotFoundException">java.io.FileNotFoundException: config/OpenbravoERPTest.properties (No such file or directory)
  at java.io.FileInputStream.open(Native Method)
  at java.io.FileInputStream.&lt;init&gt;(FileInputStream.java:120)
  at java.io.FileInputStream.&lt;init&gt;(FileInputStream.java:79)
 at com.openbravo.test.integration.erp.testscripts.OpenbravoERPTest.loadProperties(OpenbravoERPTest.java:117)
 at com.openbravo.test.integration.erp.testscripts.OpenbravoERPTest.setUpBeforeClass(OpenbravoERPTest.java:105)
 at org.eclipse.ant.internal.launching.remote.EclipseSingleCheckExecutor.executeTargets(EclipseSingleCheckExecutor.java:30)
 at org.eclipse.ant.internal.launching.remote.EclipseDefaultExecutor.executeTargets(EclipseDefaultExecutor.java:32)
 at org.eclipse.ant.internal.launching.remote.InternalAntRunner.run(InternalAntRunner.java:424)
 at org.eclipse.ant.internal.launching.remote.InternalAntRunner.main(InternalAntRunner.java:138)
 </error>
 </testcase>
 <system-out><![CDATA[asd
 ]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>
4

2 に答える 2

0

パス名は相対パスです:config/OpenbravoERPTest.properties

正しいディレクトリでコマンド ラインからスクリプトを実行していますか?

于 2012-08-22T13:02:07.047 に答える
0

config ディレクトリを含むディレクトリがクラスパスにあることを確認してください。

于 2012-08-22T13:33:59.667 に答える