Appium 关于使用 maven 管理 appium 测试程序,输出测试报告。

YYGiel · 2014年04月09日 · 751 次阅读

我现在项目结构是这样
现在还不能用 maventest 运行,只用 junit 运行,好像 pom.xml 里面还要添加什么,可是具体的流程不知道,麻烦大家帮下忙,告知下。pom.xml 代码:

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

 <properties>
   <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 </properties>

<dependencies>
    <dependency>
     <groupId>junit</groupId>
     <artifactId>junit</artifactId>
     <version>3.8.1</version>
     <scope>test</scope>
   </dependency>
   <dependency>
     <groupId>org.testng</groupId>
     <artifactId>testng</artifactId>
     <version>6.1.1</version>
     <scope>test</scope>
   </dependency>

   <dependency>
       <groupId>org.seleniumhq.selenium</groupId>
       <artifactId>selenium-java</artifactId>
       <version>2.35.0</version>
   </dependency>
 </dependencies>
暂无回复。
需要 登录 后方可回复, 如果你还没有账号请点击这里 注册