Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
* ChenKan <chenkan@corp.netease.com> <github:chenkan> <weibo:@尘泥之>
* LingFei <hzlingfei@corp.netease.com> <github:leonar> <weibo:@银翼飞狐>
* LingFei <leonarfox@163.com> <github:leonar> <weibo:@银翼飞狐>
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
####注意:主要改写了`BrowserEmulator`类, 去掉过时的`WebdriverBackedSelenium`类 及`wait`,全部改用`selenium webdriver`方法,还添加了一些比较好用的方法。

这样就可以使用selenium webdriver的最新版本了,具体在pom.xml里更改引入的版本号
***
## Dagger - a light, robust Web UI autotest framework

Dagger is a light, robust Web UI autotest framework based on [Selenium](http://seleniumhq.org/) and [TestNG](http://testng.org/doc/index.html).(中文介绍参见[这里](https://github.com/NetEase/Dagger/wiki/Dagger))
Expand Down
24 changes: 12 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<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>com.netease</groupId>
<artifactId>dagger</artifactId>
<version>1.3</version>
<groupId>com.netease</groupId>
<artifactId>dagger</artifactId>
<version>1.3</version>
<packaging>jar</packaging>

<properties>
Expand All @@ -27,7 +27,7 @@
<dependency>
<groupId>com.netease.qa</groupId>
<artifactId>arrow</artifactId>
<version>0.0.1</version>
<version>0.0.2</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -52,15 +52,15 @@

<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-server</artifactId>
<version>2.39.0</version>
<artifactId>selenium-server</artifactId>
<version>2.39.0</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-safari-driver</artifactId>
<version>2.39.0</version>
<artifactId>selenium-safari-driver</artifactId>
<version>2.39.0</version>
<scope>provided</scope>
</dependency>

Expand Down Expand Up @@ -133,7 +133,7 @@
<suiteXmlFile>${basedir}/test-xml/self-test.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
</plugins>
</build>
</project>
</plugin>
</plugins>
</build>
</project>
Loading