Author: drobiazko
Date: Thu Nov 19 07:17:05 2009
New Revision: 882062
URL: http://svn.apache.org/viewvc?rev=882062&view=rev
Log:
TAP5-762: Upgrade Selenium dependencies to version 1.0.1
Modified:
tapestry/tapestry5/branches/5.1.0.x-dev/tapestry-test/pom.xml
tapestry/tapestry5/branches/5.1.0.x-dev/tapestry-test/src/main/java/org/apache/tapestry5/test/AbstractIntegrationTestSuite.java
Modified: tapestry/tapestry5/branches/5.1.0.x-dev/tapestry-test/pom.xml
URL:
http://svn.apache.org/viewvc/tapestry/tapestry5/branches/5.1.0.x-dev/tapestry-test/pom.xml?rev=882062&r1=882061&r2=882062&view=diff
==============================================================================
--- tapestry/tapestry5/branches/5.1.0.x-dev/tapestry-test/pom.xml (original)
+++ tapestry/tapestry5/branches/5.1.0.x-dev/tapestry-test/pom.xml Thu Nov 19
07:17:05 2009
@@ -17,19 +17,19 @@
<dependency>
<groupId>org.seleniumhq.selenium.client-drivers</groupId>
<artifactId>selenium-java-client-driver</artifactId>
- <version>1.0-beta-2</version>
+ <version>${selenium-version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium.server</groupId>
<artifactId>selenium-server</artifactId>
- <version>1.0-beta-2</version>
+ <version>${selenium-version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium.server</groupId>
<artifactId>selenium-server-coreless</artifactId>
- <version>1.0-beta-2</version>
+ <version>${selenium-version}</version>
<scope>compile</scope>
</dependency>
<dependency>
@@ -68,4 +68,8 @@
</plugin>
</plugins>
</reporting>
+
+ <properties>
+ <selenium-version>1.0.1</selenium-version>
+ </properties>
</project>
Modified:
tapestry/tapestry5/branches/5.1.0.x-dev/tapestry-test/src/main/java/org/apache/tapestry5/test/AbstractIntegrationTestSuite.java
URL:
http://svn.apache.org/viewvc/tapestry/tapestry5/branches/5.1.0.x-dev/tapestry-test/src/main/java/org/apache/tapestry5/test/AbstractIntegrationTestSuite.java?rev=882062&r1=882061&r2=882062&view=diff
==============================================================================
---
tapestry/tapestry5/branches/5.1.0.x-dev/tapestry-test/src/main/java/org/apache/tapestry5/test/AbstractIntegrationTestSuite.java
(original)
+++
tapestry/tapestry5/branches/5.1.0.x-dev/tapestry-test/src/main/java/org/apache/tapestry5/test/AbstractIntegrationTestSuite.java
Thu Nov 19 07:17:05 2009
@@ -1103,4 +1103,26 @@
{
start(new String[] { linkText });
}
+
+
+ public void addCustomRequestHeader(String key, String value)
+ {
+ selenium.addCustomRequestHeader(key, value);
+ }
+
+ public String captureNetworkTraffic(String type)
+ {
+ return selenium.captureNetworkTraffic(type);
+ }
+
+ public void deselectPopUp()
+ {
+ selenium.deselectPopUp();
+ }
+
+ public void selectPopUp(String windowID)
+ {
+ selenium.selectPopUp(windowID);
+ }
+
}