Selenium - 在TestNG.xml中运行多个xml文件

时间:2016-07-27 07:14:25

标签: selenium

在代码下方运行时:

<?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>

获取错误:

  

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

1 个答案:

答案 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. 的同一目录中
  4. ./testscript.xml
  5. 中移除email.xml