You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2014/11/20 00:13:24 UTC

svn commit: r1640639 - in /myfaces/tobago/branches/tobago-3.0.x: ./ tobago-example/tobago-example-test/pom.xml tobago-example/tobago-example-test/src/test/java/org/apache/myfaces/tobago/example/test/TobagoSelenium.java

Author: lofwyr
Date: Wed Nov 19 23:13:23 2014
New Revision: 1640639

URL: http://svn.apache.org/r1640639
Log:
Merged from trunk
TOBAGO-1369: Update to Selenium 2
patch applied [from revision 1640541]

Modified:
    myfaces/tobago/branches/tobago-3.0.x/   (props changed)
    myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-test/pom.xml
    myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-test/src/test/java/org/apache/myfaces/tobago/example/test/TobagoSelenium.java

Propchange: myfaces/tobago/branches/tobago-3.0.x/
------------------------------------------------------------------------------
  Merged /myfaces/tobago/trunk:r1640541

Modified: myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-test/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-test/pom.xml?rev=1640639&r1=1640638&r2=1640639&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-test/pom.xml (original)
+++ myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-test/pom.xml Wed Nov 19 23:13:23 2014
@@ -147,9 +147,9 @@
       <scope>compile</scope>
     </dependency>
     <dependency>
-      <groupId>org.seleniumhq.selenium.client-drivers</groupId>
-      <artifactId>selenium-java-client-driver</artifactId>
-      <version>1.0.2</version>
+      <groupId>org.seleniumhq.selenium</groupId>
+      <artifactId>selenium-java</artifactId>
+      <version>2.44.0</version>
       <scope>test</scope>
     </dependency>
     <dependency>
@@ -264,7 +264,7 @@
           <plugin>
             <groupId>org.codehaus.mojo</groupId>
             <artifactId>selenium-maven-plugin</artifactId>
-            <version>1.1</version>
+            <version>2.3</version>
             <executions>
               <execution>
                 <id>start</id>

Modified: myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-test/src/test/java/org/apache/myfaces/tobago/example/test/TobagoSelenium.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-test/src/test/java/org/apache/myfaces/tobago/example/test/TobagoSelenium.java?rev=1640639&r1=1640638&r2=1640639&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-test/src/test/java/org/apache/myfaces/tobago/example/test/TobagoSelenium.java (original)
+++ myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-test/src/test/java/org/apache/myfaces/tobago/example/test/TobagoSelenium.java Wed Nov 19 23:13:23 2014
@@ -33,7 +33,7 @@ public class TobagoSelenium extends Defa
   private String browserUrl;
 
   public TobagoSelenium(final String browserUrl) {
-    super(new HttpCommandProcessor("localhost", 4444, "*firefox", browserUrl));
+    super(new HttpCommandProcessor("localhost", 4444, "*firefox", browserUrl)); //XXX should be replaced http://www.seleniumhq.org/docs/appendix_migrating_from_rc_to_webdriver.jsp#migrating-to-webdriver-reference
     this.browserUrl = browserUrl;
   }