Author: drobiazko
Date: Wed Jul 1 21:51:02 2009
New Revision: 790396
URL: http://svn.apache.org/viewvc?rev=790396&view=rev
Log:
TAP5-762: Upgrade Selenium dependencies to version 1.0.1
Modified:
tapestry/tapestry5/trunk/tapestry-test/pom.xml
tapestry/tapestry5/trunk/tapestry-test/src/main/java/org/apache/tapestry5/test/AbstractIntegrationTestSuite.java
Modified: tapestry/tapestry5/trunk/tapestry-test/pom.xml
URL:
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-test/pom.xml?rev=790396&r1=790395&r2=790396&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-test/pom.xml (original)
+++ tapestry/tapestry5/trunk/tapestry-test/pom.xml Wed Jul 1 21:51:02 2009
@@ -16,19 +16,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>
@@ -67,4 +67,9 @@
</plugin>
</plugins>
</reporting>
+
+
+ <properties>
+ <selenium-version>1.0.1</selenium-version>
+ </properties>
</project>
Modified:
tapestry/tapestry5/trunk/tapestry-test/src/main/java/org/apache/tapestry5/test/AbstractIntegrationTestSuite.java
URL:
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-test/src/main/java/org/apache/tapestry5/test/AbstractIntegrationTestSuite.java?rev=790396&r1=790395&r2=790396&view=diff
==============================================================================
---
tapestry/tapestry5/trunk/tapestry-test/src/main/java/org/apache/tapestry5/test/AbstractIntegrationTestSuite.java
(original)
+++
tapestry/tapestry5/trunk/tapestry-test/src/main/java/org/apache/tapestry5/test/AbstractIntegrationTestSuite.java
Wed Jul 1 21:51:02 2009
@@ -1103,4 +1103,36 @@
{
start(new String[] { linkText });
}
+
+ /**
+ * @since 5.2.0.0
+ */
+ public void addCustomRequestHeader(String key, String value)
+ {
+ selenium.addCustomRequestHeader(key, value);
+ }
+
+ /**
+ * @since 5.2.0.0
+ */
+ public String captureNetworkTraffic(String type)
+ {
+ return selenium.captureNetworkTraffic(type);
+ }
+
+ /**
+ * @since 5.2.0.0
+ */
+ public void deselectPopUp()
+ {
+ selenium.deselectPopUp();
+ }
+
+ /**
+ * @since 5.2.0.0
+ */
+ public void selectPopUp(String windowID)
+ {
+ selenium.selectPopUp(windowID);
+ }
}