在 IntelliJ IDEA 中执行的 Maven Selenium WebDriver 项目中的编码警告 [重复]
Posted
技术标签:
【中文标题】在 IntelliJ IDEA 中执行的 Maven Selenium WebDriver 项目中的编码警告 [重复]【英文标题】:Encoding warning in Maven Selenium WebDriver project executing in IntelliJ IDEA [duplicate] 【发布时间】:2015-07-27 07:50:11 【问题描述】:我在 IntelliJ IDEA 14.0.2 中有一个 Maven Selenium WebDriver 项目。我的 pom.xml 文件如下:
<?xml version="1.0" encoding="UTF-8"?>
<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>MasteringSeleniumTestingTools</groupId>
<artifactId>Chapter3</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>2.45.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
当我将项目作为测试命令运行时,一些警告显示如下:
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!<br>
[WARNING] File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent!
【问题讨论】:
由于编码问题,我的断言在行 assertEquals("Selenium WebDriver — Selenium Documentation", driver.getTitle()); 失败。因为实际标题打印为“Selenium WebDriver � Selenium Documentation”而不是“Selenium WebDriver — Selenium Documentation” 【参考方案1】:https://maven.apache.org/general.html#encoding-warning
<project>
...
<properties>
<project.build.sourceEncoding>UTF8</project.build.sourceEncoding>
</properties>
...
UTF-8
也是有效的。
【讨论】:
是的,这在添加该属性后有效 - 谢谢 UTF-8 和 UTF8 有什么区别? 可能没什么,但我不知道。 UTF-8 和 UTF8 都适用于我 有一些细节描述:docs.oracle.com/javase/8/docs/technotes/guides/intl/…以上是关于在 IntelliJ IDEA 中执行的 Maven Selenium WebDriver 项目中的编码警告 [重复]的主要内容,如果未能解决你的问题,请参考以下文章
hadoop学习之----------IntelliJ IDEA上实现MapReduce中最简单的单词统计的程序(本地 和 hadoop 两种实现方式)