doc/Bauxite/Application.html in bauxite-0.6.5 vs doc/Bauxite/Application.html in bauxite-0.6.6
- old
+ new
@@ -116,10 +116,14 @@
<p>Show verbose error messages (i.e. print exception names and backtraces).</p>
</dd><dt>-t, --timeout SECONDS
<dd>
<p>Number of seconds to wait before issuing a timeout error. This timeout
applies only to Selectors.</p>
+</dd><dt>-o, --open_timeout SECONDS
+<dd>
+<p>Number of seconds to wait before issuing a timeout error. This timeout
+applies only to page loading times (i.e. Net::HTTP).</p>
</dd><dt>-d, --debug
<dd>
<p>If an error occurs, break into the debug console. This mode is very useful
to try different selector combinations and debug NoSuchElementError errors.</p>
</dd><dt>-p, --provider DRIVER
@@ -159,10 +163,12 @@
otherwise it defaults to <code>terminal</code>.</p>
<p>To see a complete list of the available loggers execute:</p>
<pre>bauxite -h</pre>
+
+<p>Note that multiple instances of this option can be specified.</p>
</dd><dt>-L, --logger-option OPTION
<dd>
<p>A <code>name=value</code> pair of options that are directly forwarded to
the logger. This option argument can appear multiple times in the command
line to specify multiple options.</p>
@@ -182,17 +188,43 @@
does not contain an <code>=</code> sign.</p>
<p>To see a complete list of the available selectors execute:</p>
<pre>bauxite -h</pre>
+</dd><dt>-c, --capture
+<dd>
+<p>If the test fails, capture a screenshot in the <code>output</code>
+directory. See the --output option below.</p>
+</dd><dt>--csv-summary FILE
+<dd>
+<p>Output a single-line CSV summary ideal to feed into the Plot Jenkins
+plugin. If <code>FILE</code> is not specified, defaults to
+<code>summary.csv</code></p>
+</dd><dt>--output DIR
+<dd>
+<p>Output directory for generated artifacts. Defaults to the current working
+directory.</p>
</dd><dt>-u, --url URL
<dd>
<p>This option is an alias of:</p>
<pre>-p remote -P url=URL</pre>
<p>If <code>URL</code> is not present
<code>http://localhost:4444/wd/hub</code> will be assumed.</p>
+</dd><dt>--jenkins DIR
+<dd>
+<p>Configures default options for Jenkins integration. This option is an alias
+of:</p>
+
+<pre>-p remote -P url=http://localhost:4444/wd/hub -l echo -l html
+-L html_package=true -c --csv-summary
+--output DIR</pre>
+
+<p>Note that any of the options above can be overridden by specifying the
+option after the <code>--jenkins</code> option. For example:</p>
+
+<pre>--jenkins -u selenium.my-organization.com:4445</pre>
</dd><dt>-e, --extension DIR
<dd>
<p>Loads every Ruby file (*.rb) inside <code>DIR</code> (and subdirectories).
This option can be used to load custom <a
href="../Bauxite.html">Bauxite</a> extensions (e.g. Actions, Selectors, <a