maven-surefire-plugin和ReportNG无法更改测试报告的样式表

时间:2013-01-10 10:49:54

标签: maven-surefire-plugin system-properties reportng

我喜欢使用Maven在ReportNG的标准报告上更改样式(使用另一个.css而不是reportng.css)。我的pom.xlm看起来像这样

...

<build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.12.4</version>
                  <configuration>
                    <properties>
                        <property>
                            <name>usedefaultlisteners</name>
                            <value>false</value>
                        </property>
                        <property>
                            <name>listener</name>
                            <value>org.uncommons.reportng.HTMLReporter,org.testng.reporters.EmailableReporter</value>                             </property>

                    </properties>
                    <systemProperties>
                        <property>
                            <name>org.uncommons.reportng.title</name>
                            <value>My own titel in Test Report</value>
                        </property>
                        <property>
                            <name>org.uncommons.reportng.stylesheet</name>
                            <value>${project.basedir}/src/report/resources/MyTestReport.css</value>
                        </property>
                    </systemProperties>

...

我可以更改标题,但是当我尝试使用systemproperty org.uncommons.reportng.stylesheet时,我只会获得默认报告。有一个人有同样的问题,你是如何解决的?

祝你好运 安妮卡

1 个答案:

答案 0 :(得分:0)

我认为我遇到了同样的问题,因为我希望看到我指定的CSS文件嵌入在所有页面上。

相反,看起来ReportNG会从您指定的css(上例中的MyTestReport.css)中获取样式,并将其放入生成的所有页面上嵌入的custom.css文件中。

检查** / surefire-reports / html / custom.css。你的风格应该在那里(假设你的CSS的路径是正确的。)