我是Selenium和Maven工具的新手。尝试使用Maven通过this guide设置Selenium 2.0 Java项目。
在项目目录中创建并保存pom.xml后,我运行mvn clean install
并收到以下错误:
(...)
The goal you specified requires a project to execute but there is no POM
in this directory (C:\Users\User\Documents\TestAutomation). Please verify you invoked Maven from the
correct directory. -> [Help 1]
我的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>MySel20Proj</groupId>
<artifactId>MySel20Proj</artifactId>
<version>1.0</version>
<dependencies>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>2.45.0</version>
</dependency>
</dependencies>
</project>
我在Windows 7上安装了Maven 3.3.1和Java 1.8.0。
任何想法,我做错了什么?我对测试工具的总体经验很少。
答案 0 :(得分:0)
好的,问题在于文件扩展名。它实际上保存为pom.xml.txt
,而不是我预期的pom.xml
。 (通过dir
命令发现)