You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jd...@apache.org on 2006/09/30 23:25:26 UTC

svn commit: r451673 - /geronimo/server/trunk/maven-plugins/selenium-maven-plugin/src/site/apt/usage.apt

Author: jdillon
Date: Sat Sep 30 14:25:25 2006
New Revision: 451673

URL: http://svn.apache.org/viewvc?view=rev&rev=451673
Log:
Update usage docs to include how to enable logging and debug output

Modified:
    geronimo/server/trunk/maven-plugins/selenium-maven-plugin/src/site/apt/usage.apt

Modified: geronimo/server/trunk/maven-plugins/selenium-maven-plugin/src/site/apt/usage.apt
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/maven-plugins/selenium-maven-plugin/src/site/apt/usage.apt?view=diff&rev=451673&r1=451672&r2=451673
==============================================================================
--- geronimo/server/trunk/maven-plugins/selenium-maven-plugin/src/site/apt/usage.apt (original)
+++ geronimo/server/trunk/maven-plugins/selenium-maven-plugin/src/site/apt/usage.apt Sat Sep 30 14:25:25 2006
@@ -31,7 +31,7 @@
  phase to start it up in the <background> to allow the <<<integration-test>>> phase to
  be executed with the server running.
  
- <<NOTE:>> Currently there is no <stop>, the forked JVM will exit when Maven does.
+ <<NOTE:>> Currently there is no <stop-server>, the forked JVM will exit when Maven does.
  
  This will by default create files under <<<$\{pom.basedir\}/target/selenium>>>, including:
  
@@ -61,7 +61,7 @@
 * Start Selenium Server (Standalone)
 
  To start Selenium on the command line, which is very useful while developing tests,
- simply execute the <<<start>>> goal.
+ simply execute the <<<start-server>>> goal.
 
  This will start the server and block until the server has been stopped, either
  from the process being killed, or more normally, until CTRL-C is used to exit
@@ -72,5 +72,37 @@
 
 +----------+
 mvn selenium:start-server
++----------+
+
+* Logging Output
+
+ To capture the logs from Selenium to a file, enable <<<logOutput>>>.  This will
+ create a <<<server.log>>> that captures all of the output.
+
++----------+
+<plugin>
+    <groupId>org.apache.geronimo.plugins</groupId>
+    <artifactId>selenium-maven-plugin</artifactId>
+    <executions>
+        <execution>
+            <id>start-selenium</id>
+            <phase>pre-integration-test</phase>
+            <goals>
+                <goal>start-server</goal>
+            </goals>
+            <configuration>
+                <logOutput>true</logOutput>
+            </configuration>
+        </execution>
+    </executions>
+</plugin>
++----------+
+
+* Debugging
+
+ Sometimes it is useful to startup Selenium with its debug output enabled.
+
++----------+
+mvn selenium:start-server -Ddebug=true
 +----------+