2016-07-27 51 views
0

運行多個XML文件在下面的代碼運行:硒 - 在testng.xml文件

<?xml version="1.0" encoding="UTF-8"?> 
<suite name="ForEverGreen TestNG Suite" > 
    <suite-files> 
    <suite-file path="./testscript.xml" /> 
    <suite-file path="./email.xml" /> 
    </suite-files> 
</suite> 

得到的錯誤:

Error: org.testng.TestNGException: java.lang.NullPointerException at org.testng.TestNG.initializeSuitesAndJarFile(TestNG.java:341)

+0

你需要告訴我們比這更多,不能幫你有限的信息 –

回答

0

我懷疑你的suite-file path是錯誤的。

<?xml version="1.0" encoding="UTF-8"?> 
<suite name="ForEverGreen TestNG Suite" > 
    <suite-files> 
    <suite-file path="./testscript.xml" /> 
    <suite-file path="./email.xml" /> 
    </suite-files> 
</suite> 

能不能請你:

  1. 確保testscript.xmlemail.xml拼寫是否正確?
  2. testscript.xmlemail.xml到同一個目錄與ForEverGreen TestNG Suite
  3. testscript.xml刪除./email.xml
相關問題