-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwhich.html
41 lines (41 loc) · 1.37 KB
/
which.html
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>Choose | Autotest</title>
<meta
name="description"
content="Accessibility test automation"
>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="favicon.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<h1>Autotest: Choose</h1>
<section class="head">
<h2 class="headText">Choices</h2>
<p>To run Autotest, choose a script. If you want to run the script on a batch, also choose a batch.</p>
</section>
<section class="etc">
<form method="POST" action="/autotest/which">
<input type="hidden" name="batchDir" value="__batchDir__">
<input type="hidden" name="scriptDir" value="__scriptDir__">
<input type="hidden" name="reportDir" value="__reportDir__">
<h2>Script (required)</h2>
<select id="scriptName" name="scriptName" size="__scriptSize__">
__scriptNames__
</select>
<h2>Batch</h2>
<select id="batchName" name="batchName" size="__batchSize__">
__batchNames__
</select>
<p><button onclick="(() => {this.style.visibility = 'hidden'})()">
Run script
</button></p>
</form>
</section>
</main>
</body>
</html>