当前位置: 首页 > 知识库问答 >
问题:

[Selenium][TestNG]mvn测试或mvn干净安装测试不起作用。它只显示构建成功

荆煌
2023-03-14

我陷入了这个问题。我正试图用maven测试这个项目。我输入了“mvn测试”、“mvn测试编译”、“mvn包”等等。还要多次尝试清理项目,重新安装maven/intellij和testng,还要尝试更改testng。xml目录。但它总是显示如下相同的输出:

[INFO] Scanning for projects...
[INFO] 
[INFO] --------------------------< {{ProjectName}}:Automation >--------------------------
[INFO] Building {{ProjectName}}Automation 0.0.1-SNAPSHOT
[INFO] --------------------------------[ pom ]---------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  0.113 s
[INFO] Finished at: 2022-03-16T17:30:56+02:00
[INFO] ------------------------------------------------------------------------

我的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>SomeGroup</groupId>
  <artifactId>Automation</artifactId>
  <version>0.0.1-SNAPSHOT</version>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.8.1</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>3.0.0-M3</version>
                <configuration>
                    <includes>
                        <include>**/Test*.java</include>
                        <include>**/*Test.java</include>
                        <include>**/*TestCase.java</include>
                    </includes>
                    <suiteXmlFiles>
                        <suiteFile>src/tests/resources/suites/testng.xml</suiteFile>
                    </suiteXmlFiles>
                    <testFailureIgnore>true</testFailureIgnore>
                    <useSystemClassLoader>false</useSystemClassLoader>
                    </configuration>
            </plugin>
        </plugins>
    </build>
    <packaging>pom</packaging>

  <name>SomeName</name>
  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
      <suiteXmlFile>src/tests/resources/suites/testng.xml</suiteXmlFile>
  </properties>

<dependencies>
    <!-- https://mvnrepository.com/artifact/io.rest-assured/rest-assured -->
    <dependency>
        <groupId>io.rest-assured</groupId>
        <artifactId>rest-assured</artifactId>
        <version>4.5.1</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.projectlombok</groupId>
        <artifactId>lombok</artifactId>
        <version>1.18.22</version>
    </dependency>
    <dependency>
        <groupId>org.seleniumhq.selenium</groupId>
        <artifactId>selenium-java</artifactId>
        <version>4.1.2</version>
    </dependency>
    <dependency>
        <groupId>org.seleniumhq.selenium</groupId>
        <artifactId>selenium-api</artifactId>
        <version>4.0.0</version>
    </dependency>
    <dependency>
        <groupId>org.apache.commons</groupId>
        <artifactId>commons-lang3</artifactId>
        <version>3.12.0</version>
    </dependency>
    <dependency>
        <groupId>org.testng</groupId>
        <artifactId>testng</artifactId>
        <version>7.5</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.apache.logging.log4j</groupId>
        <artifactId>log4j-api</artifactId>
        <version>2.17.1</version>
    </dependency>
    <dependency>
        <groupId>org.apache.logging.log4j</groupId>
        <artifactId>log4j-core</artifactId>
        <version>2.17.1</version>
    </dependency>
    <dependency>
        <groupId>com.amihaiemil.web</groupId>
        <artifactId>eo-yaml</artifactId>
        <version>6.0.1</version>
    </dependency>
    <dependency>
        <groupId>org.yaml</groupId>
        <artifactId>snakeyaml</artifactId>
        <version>1.30</version>
    </dependency>
    <dependency>
        <groupId>io.github.bonigarcia</groupId>
        <artifactId>webdrivermanager</artifactId>
        <version>4.4.3</version>
    </dependency>
    <dependency>
        <groupId>com.aventstack</groupId>
        <artifactId>extentreports-testng-adapter</artifactId>
        <version>1.2.2</version>
    </dependency>
    <dependency>
        <groupId>com.relevantcodes</groupId>
        <artifactId>extentreports</artifactId>
        <version>2.41.2</version>
    </dependency>
    <dependency>
        <groupId>org.jboss.aerogear</groupId>
        <artifactId>aerogear-otp-java</artifactId>
        <version>1.0.0</version>
    </dependency>
    <dependency>
        <groupId>com.opencsv</groupId>
        <artifactId>opencsv</artifactId>
        <version>5.5</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.apache.struts</groupId>
        <artifactId>struts-core</artifactId>
        <version>1.3.8</version>
    </dependency>
    <dependency>
        <groupId>org.jetbrains</groupId>
        <artifactId>annotations</artifactId>
        <version>23.0.0</version>
        <scope>compile</scope>
    </dependency>
    <dependency>
        <groupId>commons-codec</groupId>
        <artifactId>commons-codec</artifactId>
        <version>20041127.091804</version>
    </dependency>
    <dependency>
        <groupId>org.assertj</groupId>
        <artifactId>assertj-core</artifactId>
        <version>3.21.0</version>
        <scope>test</scope>
    </dependency>
</dependencies>
</project>

我的testng.xml是:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd">
<suite name="Web Automation">
<!--    <parameter name="env" value="${env}"/>-->
<!--    <parameter name="browser" value="${browser}" />-->
    <parameter name="env" value="test"/>
    <parameter name="browser" value="chrome"/>
    <test name="patientTests" >
        <packages>
            <package name="FunctionalTests"/>
        </packages>
    </test>
</suite>

结构是:

项目结构

如果有人帮我,我会很高兴...一切都从“类路径错误”开始,事情出错了

共有2个答案

羊舌迪
2023-03-14

抱歉...我的测试是这样的:

package FunctionalTests;

import org.testng.Assert;
import org.testng.annotations.Test;


import java.io.IOException;

    public class LoginTest extends BaseTest{
    
        @Test(groups = {"fullRegression","LoginTests", "PERRY-269", "sanityCheck"},
                description = "Login as Provider with valid email")
        public void loginAsProviderWithEmail() throws IOException {
            logINFO("Enter email and password and click login.");
            loginPage.loginWithEmail(providerEmail, providerPassword);
            Assert.assertTrue(checkHttpResponseCode());
    
            logINFO("Check if home page loaded (Top bar tracker button exists).");
            Assert.assertTrue(providerHomePage.isPageLoaded(), "Home page not loaded.");
        }
鲜于雨石
2023-03-14

POMtestng.xml只是设置文件

您必须有一个带有test注释的测试方法。此外,还有一些正在运行的代码,最后是一个基本的断言代码。

[Test]
public void Test1() {

  // Test code goes here
     Assert.true(boolVal, "Testing that boolVal is true");

}

确保您的代码创建了带有实际测试步骤和案例的测试套件。

 类似资料:
  • 我陷入了这个问题。我正试图用maven测试这个项目。我输入了“mvn测试”、“mvn测试编译”、“mvn包”等等。还要多次尝试清理项目,重新安装maven/intellij和testng,还要尝试更改testng。xml目录。但它总是显示如下相同的输出: 我的POM是: 我的testng.xml是: 结构是: 项目结构 如果有人帮我,我会很高兴...一切都从“类路径错误”开始,事情出错了 我的测试

  • 我有一个用selenium进行单元测试和集成测试的项目。 当我用IntelliJ执行cucumber集成测试时,它工作得很好,您可以看到: 用Intellij执行cucumber集成测试 但是,当我执行mvn集成测试时,似乎没有发现任何联调: 故障保护输出 我定义了以下POM: > 文件夹结构是文件夹结构 mvn集成-测试输出https://drive . Google . com/file/d/

  • 我是Maven的新手,我有一个基于Java的web项目,在我的MyEclipse中配置了Maven。 现在,如果我修改了任何Java文件,那么我需要执行还是?

  • 所以现在我退出root用户,返回sudo su作为root用户并检查PATH变量,它没有maven的PATH /bin/sh:1:mvn:找不到命令“/bin/sh-c mvn install”返回非零代码:127

  • 我已经使用selenium创建了测试用例,之前我可以使用maven(从命令行和eclipse)执行我的测试用例。但是现在它不起作用了。请帮助 请在下面找到控制台日志:(运行为- 我没有得到任何错误,它成功地构建了一个项目。但是跳过所有测试用例 请找到我的pom。xml配置如下: 请找到E2E。xml如下:

  • 关于Maven的小问题,以及安装和站点之间的区别。 当运行一个非常基本的干净安装时,我可以看到单元测试运行良好,完全没有问题。 然后,我得到了为项目生成一个网站的要求,以放置测试报告、javadoc等... 因此,我只是在maven生命周期中更进一步,使用mvn clean site而不是mvn Clear install。 然而,令人惊讶的是,mvn干净的网站似乎没有运行测试用例。(与 mvn