TestNG Maven SeleniumGrid

时间:2014-08-04 11:50:23

标签: java maven selenium

我有一个使用SeleniumGrid + testNG的测试用例的maven项目,

问题在于我认为我已经完成了所有配置,但是当我尝试运行时总会出现错误:

运行com.pruebas.seleniumGridTestNG.dataDrivenParallelXML.TestLanzadorIdealistaTestNG 使用以下命令配置TestNG:org.apache.maven.surefire.testng.conf.TestNGMapConfigurator@41fc2fb 测试运行:4,失败:2,错误:0,跳过:2,经过的时间:0.597秒<<< FAILURE!

我甚至无法查看错误的位置,因为它不在测试类中。

这是我的POM文件:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>EjemploSeleniumGridMavenTestNG</groupId>
  <artifactId>EjemploSeleniumGridMavenTestNG</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <dependencies>

      <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-java</artifactId>
            <version>2.42.2</version>
    </dependency>

  <dependency>
      <groupId>org.testng</groupId>
      <artifactId>testng</artifactId>
      <version>6.3.1</version>
      <scope>test</scope>
    </dependency>

  <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.8.1</version>
      <scope>test</scope>
    </dependency>
        </dependencies>

</project>

<plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.17</version>
        <configuration>
          <suiteXmlFiles>
            <suiteXmlFile>src/test/resources/test-properties.xml</suiteXmlFile>
          </suiteXmlFiles>
        </configuration>
      </plugin>
</plugins>

然而,我将我的项目上传到Github,如果有人想尝试的话。

https://github.com/miguelavm84/EjemploSeleniumGridMavenTestNG

感谢您的帮助,谢谢。

0 个答案:

没有答案