Revision: 3970
Author: janne.t.harkonen
Date: Fri Aug 27 05:24:38 2010
Log: Edited wiki page JavaIntegration through web user interface.
http://code.google.com/p/robotframework/source/detail?r=3970

Modified:
 /wiki/JavaIntegration.wiki

=======================================
--- /wiki/JavaIntegration.wiki  Fri Aug 27 04:39:10 2010
+++ /wiki/JavaIntegration.wiki  Fri Aug 27 05:24:38 2010
@@ -4,4 +4,32 @@

Starting from Robot Framework 2.5.2, RF is distributed also as a jar file. This jar file allows execution of Robot Framework without having Python installed, but it also contains a programmatic entry point for using RF within Java code.

-Currently, an API exists only for test execution.
+The latest jar distribution is available from the download page.
+
+
+== Using Robot Framework Jar ==
+
+It is possible to execute tests using the jar file with command like these:
+
+{{{
+  java -jar robotframework-2.5.2.jar --help
+  java -jar robotframework-2.5.2.jar mytests.txt
+  java -jar robotframework-2.5.2.jar --variable name:value mytests.txt
+
+}}}
+
+Rebot can be used like this:
+{{{
+  java -jar robotframework-2.5.2.jar rebot --help
+  java -jar robotframework-2.5.2.jar rebot output.xml
+  java -jar robotframework-2.5.2.jar rebot --name Combined outputs/*.xml
+
+}}}
+
+== Using Programmatic API ==
+
+Currently, an API exists only for test execution. [UserGuide User Guide] contains an example.
+
+Javadocs for individual release are found below:
+
+ * [http://robotframework.googlecode.com/svn/tags/robotframework-2.5.2/doc/java 2.5.2]

Reply via email to