用maven自动化测试java web应用程序页面的配置

本文详细介绍了如何使用Maven Tomcat插件配置Tomcat,添加Selenium和JUnit依赖,并配置Tomcat启动顺序。包括插件配置、依赖添加、配置profile以及UT测试案例的添加。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

需要使用maven tomcat插件,添加selenium依赖,最重要的是配置tomcat启动顺序,

1, 添加tomcat插件,设置执行的顺序

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>tomcat-maven-plugin</artifactId>
    <version>1.1</version>
    <configuration>
        <fork>true</fork>
        <port>8081</port>
    </configuration>
    <executions>
        <execution>
            <id>start-tc</id>
            <phase>pre-integration-test</phase>
            <goals>
                <goal>run-war-only</goal>
            </goals>
        </execution>
        <execution>
            <id>stop-tc</id>
            <phase>post-integration-test</phase>
            <goals>
                <goal>shutdown</goal>
            </goals>
        </execution>
    </executions>
</plugin>
这里可以添加系统参数的配置
<configuration>
          <systemProperties>
            <example.value.1>alpha</example.value.1>
            <example.value.2>beta</example.value.2>
          </systemProperties>
        </configuration>

2, 添加selenium和junit依赖

<dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.10</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-java</artifactId>
            <version>2.14.0</version>
            <scope>test</scope>
        </dependency>


3,配置profile

<profile>
            <id>it</id>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
            <build>
                <plugins>                   

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <executions>
    <execution>
        <id>run-webtests</id>
        <phase>integration-test</phase>
        <goals>
        <goal>test</goal>
        </goals>
        <configuration>
        <includes>
            <include>**/*Webtest.java</include>
        </includes>
        <skip>false</skip>
        </configuration>
    </execution>
    </executions>
</plugin>

                </plugins>
            </build>
        </profile>

4, 最后就是添加ut test case了
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值