-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.jelly
More file actions
25 lines (24 loc) · 1.43 KB
/
config.jelly
File metadata and controls
25 lines (24 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form">
<!--
This jelly script is used for per-project configuration.
See global.jelly for a general discussion about jelly script.
-->
<f:entry title="Enabled" help="${rootURL}/plugin/seleniumhq/help-builder-testEnabled.html">
<f:checkbox field="testEnabled" checked="${instance.testEnabled}" default="true" />
</f:entry>
<f:entry title="browser" help="${rootURL}/plugin/seleniumhq/help-builder-browser.html">
<f:textbox field="browser" clazz="required" checkMessage="${%mandatory.browser}"/>
</f:entry>
<f:entry title="startURL" help="${rootURL}/plugin/seleniumhq/help-builder-starturl.html">
<f:textbox field="startURL" clazz="required" checkMessage="${%mandatory.startURL}"/>
</f:entry>
<f:entry title="suiteFile" help="${rootURL}/plugin/seleniumhq/help-builder-suitefile.html">
<f:textbox field="suiteFile" clazz="required" checkMessage="${%mandatory.suiteFile}"/>
</f:entry>
<f:entry title="resultFile" help="${rootURL}/plugin/seleniumhq/help-builder-resultfile.html">
<f:textbox field="resultFile" clazz="required" checkMessage="${%mandatory.resultFile}"/>
</f:entry>
<f:entry title="other" help="${rootURL}/plugin/seleniumhq/help-builder-other.html">
<f:textbox field="other" />
</f:entry>
</j:jelly>